-
Notifications
You must be signed in to change notification settings - Fork 150
Expand file tree
/
Copy pathdataspaces.trig
More file actions
58 lines (49 loc) · 1.92 KB
/
dataspaces.trig
File metadata and controls
58 lines (49 loc) · 1.92 KB
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
52
53
54
55
56
57
58
@prefix lapp: <https://w3id.org/atomgraph/linkeddatahub/apps#> .
@prefix ldh: <https://w3id.org/atomgraph/linkeddatahub#> .
@prefix ac: <https://w3id.org/atomgraph/client#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix ldt: <https://www.w3.org/ns/ldt#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
### do not use blank nodes to identify resources! ###
### urn: URI scheme is used because applications are not accessible in their own dataspace (under $BASE_URI) ###
# root admin
<urn:linkeddatahub:apps/admin>
{
<urn:linkeddatahub:apps/admin> a lapp:Application ;
dct:title "LinkedDataHub admin" ;
lapp:origin <https://admin.localhost:4443> ;
ldt:ontology <https://w3id.org/atomgraph/linkeddatahub/admin#> ;
ac:stylesheet <static/xsl/admin/layout.xsl> .
}
# root end-user
<urn:linkeddatahub:apps/end-user>
{
<urn:linkeddatahub:apps/end-user> a lapp:Application ;
dct:title "LinkedDataHub" ;
lapp:origin <https://localhost:4443> ;
ldt:ontology <https://localhost:4443/ns#> ;
ac:stylesheet <static/xsl/layout.xsl> ;
lapp:public true .
}
# test admin
<urn:linkeddatahub:apps/test/admin>
{
<urn:linkeddatahub:apps/test/admin> a lapp:Application ;
dct:title "Test admin" ;
lapp:origin <https://admin.test.localhost:4443> ;
ldt:ontology <https://w3id.org/atomgraph/linkeddatahub/admin#> ;
ac:stylesheet <static/xsl/admin/layout.xsl> .
}
# test end-user
<urn:linkeddatahub:apps/test/end-user>
{
<urn:linkeddatahub:apps/test/end-user> a lapp:Application ;
dct:title "Test" ;
lapp:origin <https://test.localhost:4443> ;
ldt:ontology <https://test.localhost:4443/ns#> ;
ac:stylesheet <static/xsl/layout.xsl> ;
lapp:public true .
}