-
Notifications
You must be signed in to change notification settings - Fork 22
/
config.example.ttl
35 lines (29 loc) · 1002 Bytes
/
config.example.ttl
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
@prefix conf: <http://my.quit.conf/> .
@prefix quit: <http://quit.aksw.org/vocab/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
conf:exampleStore a quit:QuitStore ;
quit:allowNewGraphs 1 ;
quit:pathOfGitRepo "../store.default" ;
quit:defaultBranch "master" ;
quit:globalFile "global.nt" .
conf:exampleDBpedia a quit:Graph ;
quit:graphUri <http://dbpedia.org/> ;
quit:isVersioned 1 ;
quit:graphFile "dbpedia.nt" .
conf:exampleGraph a quit:Graph ;
quit:graphUri <http://my.quit.graph/> ;
quit:isVersioned 1 ;
quit:graphFile "default.nt" .
conf:default a <Graph> ;
quit:graphUri <http://aksw.org/NormanRadtke> ;
quit:isVersioned 1 ;
quit:graphFile "radtke.nt" .
conf:default1 a <Graph> ;
quit:graphUri <http://aksw.org/NatanaelArndt> ;
quit:isVersioned 1 ;
quit:graphFile "arndt.nt" .
conf:aksw a <Binding> ;
quit:prefix "aksw" ;
quit:namespace <http://aksw.org/> .
quit:graphFile "default.nt" .