-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathidpo.ttl
362 lines (360 loc) · 13.7 KB
/
idpo.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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
# baseURI: http://w3id.org/idpo
# imports: http://www.w3.org/ns/prov-o#
# imports: http://www.w3.org/ns/shacl#
# prefix: idpo
@prefix bpmn2: <http://www.omg.org/spec/BPMN/20100524/MODEL#> .
@prefix dash: <http://datashapes.org/dash#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix idpo: <http://w3id.org/idpo#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix swa: <http://topbraid.org/swa#> .
@prefix tosh: <http://topbraid.org/tosh#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://w3id.org/idpo>
rdf:type owl:Ontology ;
dcterms:created "2020-03-30"^^xsd:date ;
dcterms:creator [
rdf:type foaf:Person ;
foaf:name "Philipp Hagedorn, Ruhr-University Bochum" ;
] ;
dcterms:description "The Information Delivery Processes Ontology (IDPO) Ontology is defined for modeling information delivery in the construction planning based on BPMN processes and the PROV-Ontology. It provides SHACL templates for validating information requirements and delivery specifications." ;
dcterms:license "https://creativecommons.org/licenses/by-sa/4.0/" ;
dcterms:publisher "Chair of Computing in Engineering, Ruhr-University Bochum" ;
dcterms:source "https://git.inf.bi.ruhr-uni-bochum.de/semweb-ontology/idpo/" ;
dcterms:title "Information Delivery Processes Ontology (IDPO)" ;
owl:imports <http://www.w3.org/ns/prov-o#> ;
owl:imports sh: ;
owl:versionInfo "v0.1" ;
sh:declare idpo:PrefixDeclaration ;
sh:declare bpmn2:PrefixDeclaration ;
.
idpo:Information
rdf:type owl:Class ;
rdfs:comment "This class is used to represent a set of data summarized as information. Information can be generated and used. Instances of this class can be derived from bpmn2:DataObject individuals. This class is a subClass of prov:Entity which allows to associate additional provenance information." ;
rdfs:label "Information" ;
rdfs:seeAlso bpmn2:DataObject ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf prov:Entity ;
.
idpo:InformationDelivery
rdf:type owl:Class ;
rdfs:comment "This class is used to represent the activity of generation information regarding defined information requirements and delivery specifications. Instances of this class can be derived from bpmn2:Task individuals. This class is a subClass of prov:Activity which allows to associate additional provenance information." ;
rdfs:label "Information Delivery" ;
rdfs:seeAlso bpmn2:Task ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf prov:Activity ;
.
idpo:InformationDeliverySpecification
rdf:type owl:Class ;
rdfs:comment "This class contains a set of delivery specifications for an associated information individual." ;
rdfs:label "Information Delivery Specification" ;
rdfs:subClassOf owl:Thing ;
skos:prefLabel "Information Delivery Specification" ;
.
idpo:InformationRequirement
rdf:type owl:Class ;
rdfs:comment "This class contains the information requirements for an associated information individual." ;
rdfs:label "Information Requirement" ;
rdfs:subClassOf owl:Thing ;
.
idpo:InformationStatus
rdf:type owl:Class ;
rdfs:comment "This class represents the status of information." ;
rdfs:label "Information Status" ;
rdfs:subClassOf owl:Thing ;
.
idpo:InformationUsage
rdf:type owl:Class ;
rdfs:comment "This class is used to represent the activity of using information regarding defined information requirements and delivery specifications. Instances of this class can be derived from bpmn2:Task individuals. This class is a subClass of prov:Activity which allows to associate additional provenance information." ;
rdfs:label "Information Usage" ;
rdfs:seeAlso bpmn2:Task ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf prov:Activity ;
.
idpo:PrefixDeclaration
rdf:type sh:PrefixDeclaration ;
sh:namespace "http://w3id.org/idpo#"^^xsd:anyURI ;
sh:prefix "idpo" ;
.
idpo:Project
rdf:type owl:Class ;
rdfs:comment "This class represents a project and hosts the activities for generating and using information and the related persons." ;
rdfs:label "Project" ;
rdfs:subClassOf owl:Thing ;
skos:prefLabel "Project" ;
.
idpo:belongsTo
rdf:type owl:ObjectProperty ;
rdfs:comment "Represents the usage of an information inside a project" ;
rdfs:domain idpo:InformationUsage ;
rdfs:label "belongs to" ;
rdfs:range idpo:Project ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf idpo:hasInformationUsage ;
owl:propertyDisjointWith idpo:deliversFor ;
.
idpo:deliversFor
rdf:type owl:ObjectProperty ;
rdfs:comment "Represents the delivery of an information inside a project" ;
rdfs:domain idpo:InformationDelivery ;
rdfs:label "delivers for" ;
rdfs:range idpo:Project ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf idpo:hasInformationDelivery ;
owl:propertyDisjointWith idpo:belongsTo ;
.
idpo:deliverySpecification
rdf:type owl:ObjectProperty ;
rdfs:comment "Represents the concrete specification of delivered information as a sh:NodeShape oder any other rdfs:Resource" ;
rdfs:domain idpo:InformationDeliverySpecification ;
rdfs:label "delivery specification" ;
rdfs:range rdfs:Resource ;
rdfs:range sh:NodeShape ;
rdfs:subPropertyOf owl:topObjectProperty ;
.
idpo:derivedFromBPMN
rdf:type owl:ObjectProperty ;
rdfs:comment "Associates the BPMN object from which this individual has been derived" ;
rdfs:domain idpo:Information ;
rdfs:domain idpo:InformationDelivery ;
rdfs:domain idpo:InformationUsage ;
rdfs:label "derived from BPMN object" ;
rdfs:range bpmn2:DataObject ;
rdfs:range bpmn2:Task ;
rdfs:subPropertyOf owl:topObjectProperty ;
.
idpo:dueDate
rdf:type owl:DatatypeProperty ;
rdfs:comment "The due date of an information requirement" ;
rdfs:domain idpo:InformationRequirement ;
rdfs:label "due date" ;
rdfs:range xsd:dateTime ;
rdfs:subPropertyOf owl:topDataProperty ;
.
idpo:generatesInformation
rdf:type owl:ObjectProperty ;
rdfs:comment "Associates generated information to an information delivery" ;
rdfs:domain idpo:InformationDelivery ;
rdfs:label "generates Information" ;
rdfs:range idpo:Information ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:subPropertyOf prov:generated ;
owl:inverseOf idpo:isGeneratedBy ;
owl:propertyDisjointWith idpo:usesInformation ;
.
idpo:hasData
rdf:type owl:ObjectProperty ;
rdfs:comment "Associates any kind of data to an information" ;
rdfs:domain idpo:Information ;
rdfs:label "has data" ;
rdfs:range rdfs:Resource ;
rdfs:subPropertyOf owl:topObjectProperty ;
.
idpo:hasInformationDelivery
rdf:type owl:ObjectProperty ;
rdfs:comment "Associates an information delivery to a project" ;
rdfs:domain idpo:Project ;
rdfs:label "has information delivery" ;
rdfs:range idpo:InformationDelivery ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf idpo:deliversFor ;
owl:propertyDisjointWith idpo:hasInformationUsage ;
skos:prefLabel "has information delivery" ;
.
idpo:hasInformationUsage
rdf:type owl:ObjectProperty ;
rdfs:comment "Associates an information usage to a project" ;
rdfs:domain idpo:Project ;
rdfs:label "has information usage" ;
rdfs:range idpo:InformationUsage ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf idpo:belongsTo ;
owl:propertyDisjointWith idpo:hasInformationDelivery ;
skos:prefLabel "hasInformationUsage" ;
.
idpo:hasMember
rdf:type owl:ObjectProperty ;
rdfs:comment "Associates a prov:Person to a project" ;
rdfs:domain idpo:Project ;
rdfs:label "has member" ;
rdfs:range prov:Person ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf idpo:isMemberOf ;
skos:prefLabel "has Member" ;
.
idpo:hasReceivingPerson
rdf:type owl:ObjectProperty ;
rdfs:comment "Associates a prov:Person to a information usage" ;
rdfs:domain idpo:InformationUsage ;
rdfs:label "has receiving person" ;
rdfs:range prov:Person ;
rdfs:subPropertyOf owl:topObjectProperty ;
skos:prefLabel "has Member" ;
.
idpo:hasRequirement
rdf:type owl:ObjectProperty ;
rdfs:comment "Associates a requirement to an information" ;
rdfs:domain idpo:Information ;
rdfs:label "has requirement" ;
rdfs:range idpo:InformationRequirement ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf idpo:isRequirementOf ;
.
idpo:hasSendingPerson
rdf:type owl:ObjectProperty ;
rdfs:comment "Associates a prov:Person to a information delivery" ;
rdfs:domain idpo:InformationDelivery ;
rdfs:label "has sending person" ;
rdfs:range prov:Person ;
rdfs:subPropertyOf owl:topObjectProperty ;
skos:prefLabel "has Member" ;
.
idpo:hasSpecification
rdf:type owl:ObjectProperty ;
rdfs:comment "Associates a specification to an information" ;
rdfs:domain idpo:Information ;
rdfs:label "has specification" ;
rdfs:range idpo:InformationDeliverySpecification ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf idpo:isSpecificationOf ;
.
idpo:hasStatus
rdf:type owl:ObjectProperty ;
rdfs:comment "Associates a status to an information" ;
rdfs:domain idpo:Information ;
rdfs:label "has status" ;
rdfs:range idpo:InformationStatus ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf idpo:isStatusOf ;
skos:prefLabel "has status" ;
.
idpo:isGeneratedBy
rdf:type owl:ObjectProperty ;
rdfs:comment "Associates the originating information delivery to an information" ;
rdfs:domain idpo:Information ;
rdfs:label "is generated by" ;
rdfs:range idpo:InformationDelivery ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:subPropertyOf prov:wasGeneratedBy ;
owl:inverseOf idpo:generatesInformation ;
.
idpo:isMemberOf
rdf:type owl:ObjectProperty ;
rdfs:comment "Associates a project to a prov:Person" ;
rdfs:domain prov:Person ;
rdfs:label "is member of" ;
rdfs:range idpo:Project ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf idpo:hasMember ;
skos:prefLabel "is member of" ;
.
idpo:isRequirementOf
rdf:type owl:ObjectProperty ;
rdfs:comment "Associates the originating information to a requirement" ;
rdfs:domain idpo:InformationRequirement ;
rdfs:label "is information requirement of" ;
rdfs:range idpo:Information ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf idpo:hasRequirement ;
skos:prefLabel "is information requirement of" ;
.
idpo:isSpecificationOf
rdf:type owl:ObjectProperty ;
rdfs:comment "Associates the originating information to a specification" ;
rdfs:domain idpo:InformationDeliverySpecification ;
rdfs:label "is specification of" ;
rdfs:range idpo:Information ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf idpo:hasSpecification ;
skos:prefLabel "is specification of" ;
.
idpo:isStatusOf
rdf:type owl:ObjectProperty ;
rdfs:comment "Associates the information that uses a status" ;
rdfs:domain idpo:InformationStatus ;
rdfs:label "is status of" ;
rdfs:range idpo:Information ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf idpo:hasStatus ;
skos:prefLabel "is status of" ;
.
idpo:isUsedBy
rdf:type owl:ObjectProperty ;
rdfs:comment "Represents the usage of an information" ;
rdfs:domain idpo:Information ;
rdfs:label "is used by" ;
rdfs:range idpo:InformationUsage ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf idpo:usesInformation ;
owl:propertyDisjointWith idpo:generatesInformation ;
.
idpo:priority
rdf:type owl:DatatypeProperty ;
rdfs:comment "Represents the priority of an information requirement, e. g. high, low, none" ;
rdfs:domain idpo:InformationRequirement ;
rdfs:label "priority" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty ;
.
idpo:requires
rdf:type owl:ObjectProperty ;
rdfs:comment "Represents the concrete requirement of delivered information as a sh:NodeShape oder any other rdfs:Resource on the dataset and/or document level" ;
rdfs:domain idpo:InformationRequirement ;
rdfs:label "requires" ;
rdfs:range sh:Shape ;
rdfs:subPropertyOf owl:topObjectProperty ;
.
idpo:status
rdf:type owl:DatatypeProperty ;
rdfs:comment "Represents the status string of a status individual, e. g. Work in Progess, Shared, Published, Archived" ;
rdfs:domain idpo:InformationStatus ;
rdfs:label "status" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty ;
.
idpo:statusSystem
rdf:type owl:DatatypeProperty ;
rdfs:comment "Represents the status system string of a status individual, e. g. ISO19650 or an URI to the originating status system" ;
rdfs:domain idpo:InformationStatus ;
rdfs:label "status system" ;
rdfs:range [
rdf:type owl:Class ;
owl:unionOf (
xsd:string
xsd:anyURI
) ;
] ;
rdfs:subPropertyOf owl:topDataProperty ;
.
idpo:suitability
rdf:type owl:DatatypeProperty ;
rdfs:comment "Represents the suitability of information within an information requirement, e. g. regarding to ISO19650" ;
rdfs:domain idpo:InformationRequirement ;
rdfs:label "suitablity" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty ;
.
idpo:usesInformation
rdf:type owl:ObjectProperty ;
rdfs:comment "Associates used information to an information usage" ;
rdfs:domain idpo:InformationUsage ;
rdfs:label "uses information" ;
rdfs:range idpo:Information ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:subPropertyOf prov:used ;
owl:inverseOf idpo:isUsedBy ;
owl:propertyDisjointWith idpo:generatesInformation ;
.
bpmn2:PrefixDeclaration
rdf:type sh:PrefixDeclaration ;
sh:namespace "http://www.omg.org/spec/BPMN/20100524/MODEL#"^^xsd:anyURI ;
sh:prefix "bpmn2" ;
.