-
Notifications
You must be signed in to change notification settings - Fork 0
/
idpo.rdf
369 lines (368 loc) · 22.3 KB
/
idpo.rdf
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
363
364
365
366
367
368
369
<?xml version="1.0"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:tosh="http://topbraid.org/tosh#"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:swa="http://topbraid.org/swa#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:prov="http://www.w3.org/ns/prov#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:idpo="http://w3id.org/idpo#"
xmlns:sh="http://www.w3.org/ns/shacl#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:dash="http://datashapes.org/dash#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xml:base="http://w3id.org/idpo" >
<rdf:Description rdf:about="#status">
<rdfs:comment>Represents the status string of a status individual, e. g. Work in Progess, Shared, Published, Archived</rdfs:comment>
<rdfs:domain rdf:resource="#InformationStatus"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
<rdfs:label>status</rdfs:label>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topDataProperty"/>
</rdf:Description>
<rdf:Description rdf:about="#hasInformationUsage">
<rdfs:comment>Associates an information usage to a project</rdfs:comment>
<rdfs:label>has information usage</rdfs:label>
<owl:propertyDisjointWith rdf:resource="#hasInformationDelivery"/>
<owl:inverseOf rdf:resource="#belongsTo"/>
<rdfs:domain rdf:resource="#Project"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:range rdf:resource="#InformationUsage"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<skos:prefLabel>hasInformationUsage</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="#InformationStatus">
<rdfs:comment>This class represents the status of information.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Information Status</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
</rdf:Description>
<rdf:Description rdf:about="#isRequirementOf">
<rdfs:comment>Associates the originating information to a requirement</rdfs:comment>
<rdfs:range rdf:resource="#Information"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:label>is information requirement of</rdfs:label>
<owl:inverseOf rdf:resource="#hasRequirement"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:domain rdf:resource="#InformationRequirement"/>
<skos:prefLabel>is information requirement of</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="#InformationUsage">
<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:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Information Usage</rdfs:label>
<rdfs:seeAlso rdf:resource="http://www.omg.org/spec/BPMN/20100524/MODEL#Task"/>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Activity"/>
</rdf:Description>
<rdf:Description rdf:about="#Project">
<rdfs:comment>This class represents a project and hosts the activities for generating and using information and the related persons.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Project</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<skos:prefLabel>Project</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="#requires">
<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:comment>
<rdfs:label>requires</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/shacl#Shape"/>
<rdfs:domain rdf:resource="#InformationRequirement"/>
</rdf:Description>
<rdf:Description rdf:about="#deliversFor">
<rdfs:comment>Represents the delivery of an information inside a project</rdfs:comment>
<rdfs:label>delivers for</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<owl:propertyDisjointWith rdf:resource="#belongsTo"/>
<owl:inverseOf rdf:resource="#hasInformationDelivery"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:domain rdf:resource="#InformationDelivery"/>
<rdfs:range rdf:resource="#Project"/>
</rdf:Description>
<rdf:Description rdf:about="#hasRequirement">
<rdfs:comment>Associates a requirement to an information</rdfs:comment>
<rdfs:domain rdf:resource="#Information"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:label>has requirement</rdfs:label>
<owl:inverseOf rdf:resource="#isRequirementOf"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:range rdf:resource="#InformationRequirement"/>
</rdf:Description>
<rdf:Description rdf:about="#deliverySpecification">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<rdfs:label>delivery specification</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:domain rdf:resource="#InformationDeliverySpecification"/>
<rdfs:comment>Represents the concrete specification of delivered information as a sh:NodeShape oder any other rdfs:Resource</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="#InformationRequirement">
<rdfs:label>Information Requirement</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:comment>This class contains the information requirements for an associated information individual.</rdfs:comment>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
</rdf:Description>
<rdf:Description rdf:about="#suitability">
<rdfs:comment>Represents the suitability of information within an information requirement, e. g. regarding to ISO19650</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topDataProperty"/>
<rdfs:label>suitablity</rdfs:label>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:domain rdf:resource="#InformationRequirement"/>
</rdf:Description>
<rdf:Description rdf:about="#PrefixDeclaration">
<sh:namespace rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://w3id.org/idpo#</sh:namespace>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#PrefixDeclaration"/>
<sh:prefix>idpo</sh:prefix>
</rdf:Description>
<rdf:Description rdf:about="#Information">
<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:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Information</rdfs:label>
<rdfs:seeAlso rdf:resource="http://www.omg.org/spec/BPMN/20100524/MODEL#DataObject"/>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Entity"/>
</rdf:Description>
<rdf:Description rdf:about="#statusSystem">
<rdfs:range rdf:nodeID="A0"/>
<rdfs:comment>Represents the status system string of a status individual, e. g. ISO19650 or an URI to the originating status system</rdfs:comment>
<rdfs:domain rdf:resource="#InformationStatus"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
<rdfs:label>status system</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topDataProperty"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A0">
<owl:unionOf rdf:nodeID="A1"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="#isGeneratedBy">
<rdfs:comment>Associates the originating information delivery to an information</rdfs:comment>
<rdfs:domain rdf:resource="#Information"/>
<owl:inverseOf rdf:resource="#generatesInformation"/>
<rdfs:label>is generated by</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasGeneratedBy"/>
<rdfs:range rdf:resource="#InformationDelivery"/>
</rdf:Description>
<rdf:Description rdf:about="#hasStatus">
<rdfs:comment>Associates a status to an information</rdfs:comment>
<rdfs:domain rdf:resource="#Information"/>
<owl:inverseOf rdf:resource="#isStatusOf"/>
<rdfs:label>has status</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:range rdf:resource="#InformationStatus"/>
<skos:prefLabel>has status</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="#priority">
<rdfs:comment>Represents the priority of an information requirement, e. g. high, low, none</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topDataProperty"/>
<rdfs:label>priority</rdfs:label>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:domain rdf:resource="#InformationRequirement"/>
</rdf:Description>
<rdf:Description rdf:about="#isSpecificationOf">
<rdfs:comment>Associates the originating information to a specification</rdfs:comment>
<rdfs:range rdf:resource="#Information"/>
<skos:prefLabel>is specification of</skos:prefLabel>
<rdfs:label>is specification of</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:domain rdf:resource="#InformationDeliverySpecification"/>
<owl:inverseOf rdf:resource="#hasSpecification"/>
</rdf:Description>
<rdf:Description rdf:about="#hasData">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:comment>Associates any kind of data to an information</rdfs:comment>
<rdfs:domain rdf:resource="#Information"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:label>has data</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="#generatesInformation">
<rdfs:label>generates Information</rdfs:label>
<rdfs:range rdf:resource="#Information"/>
<owl:inverseOf rdf:resource="#isGeneratedBy"/>
<rdfs:comment>Associates generated information to an information delivery</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#generated"/>
<rdfs:domain rdf:resource="#InformationDelivery"/>
<owl:propertyDisjointWith rdf:resource="#usesInformation"/>
</rdf:Description>
<rdf:Description rdf:about="#hasMember">
<rdfs:comment>Associates a prov:Person to a project</rdfs:comment>
<rdfs:label>has member</rdfs:label>
<owl:inverseOf rdf:resource="#isMemberOf"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Person"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<skos:prefLabel>has Member</skos:prefLabel>
<rdfs:domain rdf:resource="#Project"/>
</rdf:Description>
<rdf:Description rdf:about="#isUsedBy">
<rdfs:label>is used by</rdfs:label>
<rdfs:domain rdf:resource="#Information"/>
<owl:propertyDisjointWith rdf:resource="#generatesInformation"/>
<rdfs:comment>Represents the usage of an information</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:range rdf:resource="#InformationUsage"/>
<owl:inverseOf rdf:resource="#usesInformation"/>
</rdf:Description>
<rdf:Description rdf:about="#InformationDeliverySpecification">
<skos:prefLabel>Information Delivery Specification</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:comment>This class contains a set of delivery specifications for an associated information individual.</rdfs:comment>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:label>Information Delivery Specification</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="#hasInformationDelivery">
<rdfs:comment>Associates an information delivery to a project</rdfs:comment>
<rdfs:label>has information delivery</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<owl:inverseOf rdf:resource="#deliversFor"/>
<owl:propertyDisjointWith rdf:resource="#hasInformationUsage"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:domain rdf:resource="#Project"/>
<skos:prefLabel>has information delivery</skos:prefLabel>
<rdfs:range rdf:resource="#InformationDelivery"/>
</rdf:Description>
<rdf:Description rdf:about="">
<dcterms:title>Information Delivery Processes Ontology (IDPO)</dcterms:title>
<owl:imports rdf:resource="http://www.w3.org/ns/shacl#"/>
<dcterms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2020-03-30</dcterms:created>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Ontology"/>
<dcterms:source>https://git.inf.bi.ruhr-uni-bochum.de/semweb-ontology/idpo/</dcterms:source>
<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:description>
<dcterms:creator rdf:nodeID="A2"/>
<owl:versionInfo>v0.1</owl:versionInfo>
<sh:declare rdf:resource="#PrefixDeclaration"/>
<owl:imports rdf:resource="http://www.w3.org/ns/prov-o#"/>
<dcterms:license>https://creativecommons.org/licenses/by-sa/4.0/</dcterms:license>
<dcterms:publisher>Chair of Computing in Engineering, Ruhr-University Bochum</dcterms:publisher>
<sh:declare rdf:resource="http://www.omg.org/spec/BPMN/20100524/MODEL#PrefixDeclaration"/>
</rdf:Description>
<rdf:Description rdf:about="#belongsTo">
<rdfs:label>belongs to</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:range rdf:resource="#Project"/>
<rdfs:comment>Represents the usage of an information inside a project</rdfs:comment>
<owl:inverseOf rdf:resource="#hasInformationUsage"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:domain rdf:resource="#InformationUsage"/>
<owl:propertyDisjointWith rdf:resource="#deliversFor"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A2">
<foaf:name>Philipp Hagedorn, Ruhr-University Bochum</foaf:name>
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
</rdf:Description>
<rdf:Description rdf:about="#derivedFromBPMN">
<rdfs:range rdf:resource="http://www.omg.org/spec/BPMN/20100524/MODEL#DataObject"/>
<rdfs:range rdf:resource="http://www.omg.org/spec/BPMN/20100524/MODEL#Task"/>
<rdfs:domain rdf:resource="#InformationDelivery"/>
<rdfs:domain rdf:resource="#InformationUsage"/>
<rdfs:domain rdf:resource="#Information"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:comment>Associates the BPMN object from which this individual has been derived</rdfs:comment>
<rdfs:label>derived from BPMN object</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="#isMemberOf">
<rdfs:comment>Associates a project to a prov:Person</rdfs:comment>
<owl:inverseOf rdf:resource="#hasMember"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Person"/>
<rdfs:label>is member of</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:range rdf:resource="#Project"/>
<skos:prefLabel>is member of</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="#dueDate">
<rdfs:comment>The due date of an information requirement</rdfs:comment>
<rdfs:domain rdf:resource="#InformationRequirement"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
<rdfs:label>due date</rdfs:label>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topDataProperty"/>
</rdf:Description>
<rdf:Description rdf:about="#hasReceivingPerson">
<rdfs:domain rdf:resource="#InformationUsage"/>
<rdfs:label>has receiving person</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Person"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<skos:prefLabel>has Member</skos:prefLabel>
<rdfs:comment>Associates a prov:Person to a information usage</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:nodeID="A3">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:resource="http://www.w3.org/2001/XMLSchema#anyURI"/>
</rdf:Description>
<rdf:Description rdf:about="#isStatusOf">
<rdfs:comment>Associates the information that uses a status</rdfs:comment>
<rdfs:range rdf:resource="#Information"/>
<owl:inverseOf rdf:resource="#hasStatus"/>
<rdfs:label>is status of</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<skos:prefLabel>is status of</skos:prefLabel>
<rdfs:domain rdf:resource="#InformationStatus"/>
</rdf:Description>
<rdf:Description rdf:about="#hasSpecification">
<rdfs:comment>Associates a specification to an information</rdfs:comment>
<rdfs:domain rdf:resource="#Information"/>
<owl:inverseOf rdf:resource="#isSpecificationOf"/>
<rdfs:label>has specification</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:range rdf:resource="#InformationDeliverySpecification"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A1">
<rdf:rest rdf:nodeID="A3"/>
<rdf:first rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</rdf:Description>
<rdf:Description rdf:about="#InformationDelivery">
<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:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Information Delivery</rdfs:label>
<rdfs:seeAlso rdf:resource="http://www.omg.org/spec/BPMN/20100524/MODEL#Task"/>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Activity"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.omg.org/spec/BPMN/20100524/MODEL#PrefixDeclaration">
<sh:prefix>bpmn2</sh:prefix>
<sh:namespace rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.omg.org/spec/BPMN/20100524/MODEL#</sh:namespace>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#PrefixDeclaration"/>
</rdf:Description>
<rdf:Description rdf:about="#hasSendingPerson">
<rdfs:label>has sending person</rdfs:label>
<skos:prefLabel>has Member</skos:prefLabel>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Person"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:domain rdf:resource="#InformationDelivery"/>
<rdfs:comment>Associates a prov:Person to a information delivery</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="#usesInformation">
<rdfs:comment>Associates used information to an information usage</rdfs:comment>
<rdfs:label>uses information</rdfs:label>
<owl:inverseOf rdf:resource="#isUsedBy"/>
<rdfs:range rdf:resource="#Information"/>
<owl:propertyDisjointWith rdf:resource="#generatesInformation"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#used"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:domain rdf:resource="#InformationUsage"/>
</rdf:Description>
</rdf:RDF>
<!-- Created with TopBraid -->