-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgroundtruth.ttl
51 lines (41 loc) · 1.57 KB
/
groundtruth.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
@prefix base: <file:///base/> .
@prefix d2rq: <http://www.wiwiss.fu-berlin.de/suhl/bizer/D2RQ/0.1#> .
@prefix jdbc: <http://d2rq.org/terms/jdbc/> .
@prefix map: <http://mapping/> .
map:area_Reviewer_None a d2rq:PropertyBridge ;
d2rq:belongsToClassMap map:Reviewer ;
d2rq:column "reviewer.area" ;
d2rq:property base:area .
map:email_Author_None a d2rq:PropertyBridge ;
d2rq:belongsToClassMap map:Author ;
d2rq:column "author.email" ;
d2rq:property base:email .
map:name_AuthorPerson_None a d2rq:PropertyBridge ;
d2rq:belongsToClassMap map:AuthorPerson ;
d2rq:column "author.name" ;
d2rq:property base:name .
map:name_ReviewerPerson_None a d2rq:PropertyBridge ;
d2rq:belongsToClassMap map:ReviewerPerson ;
d2rq:column "reviewer.name" ;
d2rq:property base:name .
map:Author a d2rq:ClassMap ;
d2rq:class base:Author ;
d2rq:dataStorage map:database ;
d2rq:uriPattern "/@@author.aid@@/" .
map:AuthorPerson a d2rq:ClassMap ;
d2rq:class base:Person ;
d2rq:dataStorage map:database ;
d2rq:uriPattern "/@@author.aid@@/" .
map:Reviewer a d2rq:ClassMap ;
d2rq:class base:Reviewer ;
d2rq:dataStorage map:database ;
d2rq:uriPattern "/@@reviewer.rid@@/" .
map:ReviewerPerson a d2rq:ClassMap ;
d2rq:class base:Person ;
d2rq:dataStorage map:database ;
d2rq:uriPattern "/@@reviewer.rid@@/" .
map:database a d2rq:Database ;
jdbc:keepAlive "3600" ;
d2rq:jdbcDSN "jdbc:postgresql://localhost:5432/hierarchy__two_tables__reviewer_1" ;
d2rq:jdbcDriver "org.postgresql.Driver" ;
d2rq:username "lukaslaskowski" .