-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlbds.ttl
248 lines (171 loc) · 9.74 KB
/
lbds.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
@prefix : <https://w3id.org/lbdserver#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <https://w3id.org/lbdserver#> .
<https://w3id.org/lbdserver#> rdf:type owl:Ontology ;
owl:versionIRI <urn:absolute:0.0.1> ;
<http://purl.org/dc/terms/contributor> "Erik Mannens" ,
"Jakob Beetz" ,
"Pieter Pauwels" ;
<http://purl.org/dc/terms/creator> "Jeroen Werbrouck" ;
<http://purl.org/dc/terms/issued> "2022-02-01T12:00:00"^^xsd:dateTime ;
<http://purl.org/dc/terms/license> <https://creativecommons.org/licenses/by/1.0/> ;
<http://purl.org/dc/terms/title> "LBDserver vocabulary" .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/terms/contributor
<http://purl.org/dc/terms/contributor> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/creator
<http://purl.org/dc/terms/creator> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/issued
<http://purl.org/dc/terms/issued> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/license
<http://purl.org/dc/terms/license> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/title
<http://purl.org/dc/terms/title> rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### http://www.w3.org/ns/ldp#contains
<http://www.w3.org/ns/ldp#contains> rdf:type owl:ObjectProperty .
### https://w3id.org/lbdserver#aggregates
:aggregates rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.w3.org/ns/ldp#contains> ;
rdfs:domain :Aggregator .
### https://w3id.org/lbdserver#hasDatasetRegistry
:hasDatasetRegistry rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasRegistry ;
rdfs:domain :PartialProject ;
rdfs:range :DatasetRegistry ;
rdfs:label "has dataset registry"@en .
### https://w3id.org/lbdserver#hasIdentifier
:hasIdentifier rdf:type owl:ObjectProperty ;
rdfs:domain :Reference ;
rdfs:range :Identifier ;
rdfs:label "has identifier"@en .
### https://w3id.org/lbdserver#hasProjectRegistry
:hasProjectRegistry rdf:type owl:ObjectProperty ;
rdfs:range :ProjectRegistry ;
rdfs:label "has project registry"@en .
### https://w3id.org/lbdserver#hasReference
:hasReference rdf:type owl:ObjectProperty ;
rdfs:domain :Concept ;
rdfs:range :Reference ;
rdfs:label "has reference"@en .
### https://w3id.org/lbdserver#hasReferenceRegistry
:hasReferenceRegistry rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasRegistry ;
rdfs:domain :PartialProject ;
rdfs:range :ReferenceRegistry ;
rdfs:label "has reference registry"@en .
### https://w3id.org/lbdserver#hasRegistry
:hasRegistry rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.w3.org/ns/ldp#contains> ;
rdfs:domain :PartialProject ;
rdfs:range :Registry ;
rdfs:label "has Registry"@en .
### https://w3id.org/lbdserver#hasSatellite
:hasSatellite rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/ns/dcat#Dataset> ;
rdfs:range :Satellite ;
rdfs:label "has Satellite"@en .
### https://w3id.org/lbdserver#hasServiceRegistry
:hasServiceRegistry rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasRegistry ;
rdfs:domain :PartialProject ;
rdfs:range :ServiceRegistry ;
rdfs:label "has service registry"@en .
### https://w3id.org/lbdserver#hasSparqlSatellite
:hasSparqlSatellite rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasSatellite ;
rdfs:range :SparqlSatellite ;
rdfs:label "has SPARQL satellite"@en .
### https://w3id.org/lbdserver#inDataset
:inDataset rdf:type owl:ObjectProperty ;
rdfs:domain :Reference ;
rdfs:range <http://www.w3.org/ns/dcat#Dataset> ;
rdfs:label "in dataset"@en .
### https://w3id.org/lbdserver#inDistribution
:inDistribution rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :Identifier ;
rdfs:range <http://www.w3.org/ns/dcat#Distribution> ;
rdfs:label "in distribution"@en .
### https://w3id.org/lbdserver#partOfProject
:partOfProject rdf:type owl:ObjectProperty ;
rdfs:domain :PartialProject ;
rdfs:label "part of project" .
#################################################################
# Classes
#################################################################
### http://www.w3.org/ns/dcat#Catalog
<http://www.w3.org/ns/dcat#Catalog> rdf:type owl:Class .
### http://www.w3.org/ns/dcat#DataService
<http://www.w3.org/ns/dcat#DataService> rdf:type owl:Class .
### http://www.w3.org/ns/dcat#Dataset
<http://www.w3.org/ns/dcat#Dataset> rdf:type owl:Class .
### http://www.w3.org/ns/dcat#Distribution
<http://www.w3.org/ns/dcat#Distribution> rdf:type owl:Class .
### http://www.w3.org/ns/ldp#Container
<http://www.w3.org/ns/ldp#Container> rdf:type owl:Class .
### https://w3id.org/lbdserver#Aggregator
:Aggregator rdf:type owl:Class ;
rdfs:subClassOf <http://www.w3.org/ns/ldp#Container> ;
rdfs:comment "An lbds:Aggregator is an ldp:Container instance on a Solid Pod. Contrary to classic Solid-based LDP containers, an aggregator may also point to remote resources and containers." ;
rdfs:label "aggregator" .
### https://w3id.org/lbdserver#Concept
:Concept rdf:type owl:Class ;
rdfs:comment "An lbds:Concept is an abstract concept, which should only be semantically enriched via lbds:Reference instances." ;
rdfs:label "Concept" .
### https://w3id.org/lbdserver#DatasetRegistry
:DatasetRegistry rdf:type owl:Class ;
rdfs:subClassOf :Registry ;
rdfs:comment "A dcat:Catalog containing generic project datasets." ;
rdfs:label "Dataset Registry" .
### https://w3id.org/lbdserver#Identifier
:Identifier rdf:type owl:Class ;
rdfs:comment "The identifier of a reference in a particular dcat:Distribution instance." ;
rdfs:label "Identifier" .
### https://w3id.org/lbdserver#PartialProject
:PartialProject rdf:type owl:Class ;
rdfs:subClassOf <http://www.w3.org/ns/dcat#Catalog> ,
<http://www.w3.org/ns/ldp#Container> ;
rdfs:comment "An lbd:container with well-defined contributions of one stakeholder in the federated project." ;
rdfs:label "Partial Project" .
### https://w3id.org/lbdserver#ProjectRegistry
:ProjectRegistry rdf:type owl:Class ;
rdfs:subClassOf :Aggregator ;
rdfs:label "project registry" .
### https://w3id.org/lbdserver#Reference
:Reference rdf:type owl:Class ;
rdfs:comment "An lbds:Reference is the digital manifestation of an abstract concept (lbds:Concept)." ;
rdfs:label "Reference" .
### https://w3id.org/lbdserver#ReferenceRegistry
:ReferenceRegistry rdf:type owl:Class ;
rdfs:subClassOf :Registry ;
rdfs:comment "A dcat:Catalog instance that refers to a registry with lbds:Concept-s and their references (lbds:Reference) and identifiers (lbds:Identifier)." ;
rdfs:label "Reference Registry" .
### https://w3id.org/lbdserver#Registry
:Registry rdf:type owl:Class ;
rdfs:subClassOf <http://www.w3.org/ns/dcat#Catalog> .
### https://w3id.org/lbdserver#Satellite
:Satellite rdf:type owl:Class ;
rdfs:subClassOf <http://www.w3.org/ns/dcat#DataService> ;
rdfs:comment "An lbds:Satellite is a highly trusted service, connected to very few Solid Pods. It may function as an alternative storage mechanism, providing specific access to (nested) ldp:Containers, dcat:Datasets, dcat:Catalogs or dcat:Distributions. Satellites can also be thought of as 'digital assistents' to a Pod, aiding in synchronisation, data management etc. When working on a Solid Pod, it must be able to check access rights." ;
rdfs:label "Satellite" .
### https://w3id.org/lbdserver#ServiceRegistry
:ServiceRegistry rdf:type owl:Class ;
rdfs:subClassOf :Registry ;
rdfs:comment "A dcat:Catalog containing datasets which refer to services." ;
rdfs:label "Service Registry" .
### https://w3id.org/lbdserver#SparqlSatellite
:SparqlSatellite rdf:type owl:Class ;
rdfs:subClassOf :Satellite ;
rdfs:comment "A SPARQL Satellite is a specifiic sort of satellite, mirroring RDF resources on the Pod and allowing to query their union with SPARQL. The satellite should check the access rights for every result it acquires." ,
"SPARQL Satellite" ;
rdfs:label "SPARQL satellite" .
### Generated by the OWL API (version 5.1.14) https://github.com/owlcs/owlapi/