Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
aorogat authored Jul 28, 2020
1 parent 86b9a5d commit 7b730a7
Showing 1 changed file with 81 additions and 0 deletions.
81 changes: 81 additions & 0 deletions data/userDefinied.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
{
"dataset": {
"id": "Your data set id"
},
"questions": [{
"id": "1",
"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)"
}
}]
}
}]
},
{
"id": 2,
"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
}]
}
]
}

0 comments on commit 7b730a7

Please sign in to comment.