forked from LinkedDataFragments/Server.Java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config-example.json
36 lines (33 loc) · 1.2 KB
/
config-example.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"title": "My Linked Data Fragments server",
"datasourcetypes": {
"HdtDatasource" : "org.linkeddatafragments.datasource.hdt.HdtDataSourceType",
"JenaTDBDatasource" : "org.linkeddatafragments.datasource.tdb.JenaTDBDataSourceType"
},
"datasources": {
"dbpedia": {
"title": "DBPedia",
"type": "HdtDatasource",
"description": "DBPedia with an HDT back-end",
"settings": { "file": "data/dbpedia.hdt" }
},
"swdf": {
"title": "Semantic Web Dog Food",
"type": "HdtDatasource",
"description": "Semantic Web Dog Food with an HDT back-end",
"settings": { "file": "data/swdf.hdt" }
}
},
"prefixes": {
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"dc": "http://purl.org/dc/terms/",
"foaf": "http://xmlns.com/foaf/0.1/",
"dbpedia": "http://dbpedia.org/resource/",
"dbpedia-owl": "http://dbpedia.org/ontology/",
"dbpprop": "http://dbpedia.org/property/",
"hydra": "http://www.w3.org/ns/hydra/core#",
"void": "http://rdfs.org/ns/void#"
}
}