-
Notifications
You must be signed in to change notification settings - Fork 20
/
config-example.json
51 lines (48 loc) · 1.89 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"title": "My Linked Data Fragments server",
"datasourcetypes": {
"HdtDatasource" : "org.linkeddatafragments.datasource.hdt.HdtDataSourceType",
"JenaTDBDatasource" : "org.linkeddatafragments.datasource.tdb.JenaTDBDataSourceType",
"SparqlDatasource" : "org.linkeddatafragments.datasource.sparql.SparqlDataSourceType"
},
"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" }
},
"vivo": {
"title": "Semantic TDB",
"type": "JenaTDBDatasource",
"description": "Semantic Web with a TDB back-end",
"settings": { "directory": "/tmp/tdbModels",
"graph": "http://vitro.mannlib.cornell.edu/default/vitro-kb-2" }
},
"vivo-sparql": {
"title": "Semantic SPARQL",
"type": "SparqlDatasource",
"description": "Semantic Web with a SPARQL back-end",
"settings": { "endpoint": "http://localhost:8080/vivo/api/sparqlQuery",
"username": "some-username",
"password": "some-password" }
},
"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#"
}
}