-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrio.ttl
414 lines (302 loc) · 18.3 KB
/
rio.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
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
@prefix : <https://w3id.org/rio/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix gfo: <http://www.onto-med.de/ontologies/gfo.owl#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rio: <https://w3id.org/rio/> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix bibo: <http://purl.org/ontology/bibo/> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix terms: <http://purl.org/dc/terms/> .
@base <https://w3id.org/rio> .
<https://w3id.org/rio> rdf:type owl:Ontology ;
owl:versionIRI <https://w3id.org/rio/release/2017-07-24> ;
dc:created "2016-04-27" ;
dc:creator "Alexandr Uciteli" ;
dc:description "Risk Identification Ontology (RIO) provides a framework for risk specification and reasoning."@en ;
dc:modified "2017-07-24" ;
dc:title "Risk Identification Ontology (RIO)"@en ;
terms:license <http://creativecommons.org/licenses/by/4.0/> ;
vann:preferredNamespacePrefix "rio" ;
vann:preferredNamespaceURI "https://w3id.org/rio/" ;
doap:repository <https://github.com/Onto-Med/RIO> ;
rdfs:label "Risk Identification Ontology (RIO)"@en ;
owl:versionInfo "2017-07-24" ;
foaf:homepage "http://www.ontomedrisk.de/" .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/elements/1.1/created
dc:created rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/creator
dc:creator rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/description
dc:description rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/modified
dc:modified rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/title
dc:title rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/license
terms:license rdf:type owl:AnnotationProperty .
### http://purl.org/ontology/bibo/doi
bibo:doi rdf:type owl:AnnotationProperty .
### http://purl.org/vocab/vann/preferredNamespacePrefix
vann:preferredNamespacePrefix rdf:type owl:AnnotationProperty .
### http://purl.org/vocab/vann/preferredNamespaceURI
vann:preferredNamespaceURI rdf:type owl:AnnotationProperty .
### http://usefulinc.com/ns/doap#repository
doap:repository rdf:type owl:AnnotationProperty .
### http://www.w3.org/2000/01/rdf-schema#comment
rdfs:comment rdf:type owl:AnnotationProperty .
### http://www.w3.org/2002/07/owl#versionInfo
owl:versionInfo rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#altLabel
skos:altLabel rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#definition
skos:definition rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#example
skos:example rdf:type owl:AnnotationProperty .
### http://xmlns.com/foaf/0.1/homepage
foaf:homepage rdf:type owl:AnnotationProperty .
### https://w3id.org/rio/adverse_situation_probability
rio:adverse_situation_probability rdf:type owl:AnnotationProperty ;
rdfs:range xsd:decimal ;
rdfs:domain rio:Risk .
### https://w3id.org/rio/adverse_situation_severity
rio:adverse_situation_severity rdf:type owl:AnnotationProperty ;
rdfs:range xsd:int ;
rdfs:domain rio:Adverse_situation .
#################################################################
# Object Properties
#################################################################
### http://www.onto-med.de/ontologies/gfo.owl#boundary_of
gfo:boundary_of rdf:type owl:ObjectProperty .
### http://www.onto-med.de/ontologies/gfo.owl#exists_at
gfo:exists_at rdf:type owl:ObjectProperty .
### http://www.onto-med.de/ontologies/gfo.owl#has_part
gfo:has_part rdf:type owl:ObjectProperty .
### http://www.onto-med.de/ontologies/gfo.owl#has_participant
gfo:has_participant rdf:type owl:ObjectProperty .
### http://www.onto-med.de/ontologies/gfo.owl#has_property
gfo:has_property rdf:type owl:ObjectProperty .
### http://www.onto-med.de/ontologies/gfo.owl#part_of
gfo:part_of rdf:type owl:ObjectProperty .
### http://www.onto-med.de/ontologies/gfo.owl#projection_of
gfo:projection_of rdf:type owl:ObjectProperty .
### http://www.onto-med.de/ontologies/gfo.owl#projects_to
gfo:projects_to rdf:type owl:ObjectProperty .
### http://www.onto-med.de/ontologies/gfo.owl#property_of
gfo:property_of rdf:type owl:ObjectProperty .
### https://w3id.org/rio/risk_for_adverse_situation
rio:risk_for_adverse_situation rdf:type owl:ObjectProperty ;
rdfs:domain rio:Risk ;
rdfs:range rio:Adverse_situation .
### https://w3id.org/rio/risk_in_phase
rio:risk_in_phase rdf:type owl:ObjectProperty ;
rdfs:domain rio:Risk ;
rdfs:range rio:Treatment_phase .
### https://w3id.org/rio/succeeding_situation
rio:succeeding_situation rdf:type owl:ObjectProperty ;
rdfs:domain gfo:Situation ;
rdfs:range gfo:Situation .
#################################################################
# Data properties
#################################################################
### https://w3id.org/rio/has_data_value
rio:has_data_value rdf:type owl:DatatypeProperty ;
rdfs:domain rio:Treatment_situation_property .
#################################################################
# Classes
#################################################################
### http://www.onto-med.de/ontologies/gfo.owl#Chronoid
gfo:Chronoid rdf:type owl:Class .
### http://www.onto-med.de/ontologies/gfo.owl#Presential
gfo:Presential rdf:type owl:Class .
### http://www.onto-med.de/ontologies/gfo.owl#Process
gfo:Process rdf:type owl:Class .
### http://www.onto-med.de/ontologies/gfo.owl#Property
gfo:Property rdf:type owl:Class .
### http://www.onto-med.de/ontologies/gfo.owl#Situation
gfo:Situation rdf:type owl:Class ;
rdfs:subClassOf gfo:Presential .
### http://www.onto-med.de/ontologies/gfo.owl#Situoid
gfo:Situoid rdf:type owl:Class ;
rdfs:subClassOf gfo:Process .
### http://www.onto-med.de/ontologies/gfo.owl#Time_boundary
gfo:Time_boundary rdf:type owl:Class .
### https://w3id.org/rio/Adverse_situation
rio:Adverse_situation rdf:type owl:Class ;
rdfs:subClassOf rio:Treatment_situation ;
rdfs:label "Adverse situation"@en ;
skos:definition "An adverse situation is any untoward/undesirable treatment situation."@en .
### https://w3id.org/rio/Composite_property
rio:Composite_property rdf:type owl:Class ;
rdfs:subClassOf gfo:Property ,
[ rdf:type owl:Restriction ;
owl:onProperty gfo:has_part ;
owl:someValuesFrom rio:Single_property
] ;
rdfs:label "Composite property"@en ;
skos:definition "A composite property is a property that has as parts several single properties."@en ;
skos:example "Age AND presence of meningitis vaccination AND presence of antibiotic prevention"@en .
### https://w3id.org/rio/KPI
rio:KPI rdf:type owl:Class ;
rdfs:subClassOf rio:Single_property ,
rio:Treatment_situation_property ,
[ rdf:type owl:Restriction ;
owl:onProperty gfo:property_of ;
owl:someValuesFrom rio:Potential_risk_situation
] ;
rdfs:label "KPI"@en ;
skos:altLabel "Key Performance Indicator"@en ;
skos:definition "Properties of the potential risk situations that are relevant for the estimation of the risk are called KPIs (Key Performance Indicators)."@en ;
skos:example "Age"@en ,
"Presence of antibiotic prevention"@en ,
"Presence of menginitis vaccination"@en .
### https://w3id.org/rio/Non-risk_situation
rio:Non-risk_situation rdf:type owl:Class ;
rdfs:subClassOf rio:Treatment_situation ;
rdfs:label "Non-risk situation"@en ;
skos:definition "A non-risk situation is a treatment situation having no risks."@en .
### https://w3id.org/rio/Point_in_time_of_risk_detection
rio:Point_in_time_of_risk_detection rdf:type owl:Class ;
rdfs:subClassOf rio:Point_in_time_of_treatment ;
rdfs:label "Point in time of risk detection"@en ;
skos:altLabel "Risk detection time point"@en ;
skos:definition "A point in time of risk detection is a point in time of treatment at which the current treatment situation (potential risk situation) is analyzed for the presence of risks."@en .
### https://w3id.org/rio/Point_in_time_of_treatment
rio:Point_in_time_of_treatment rdf:type owl:Class ;
rdfs:subClassOf gfo:Time_boundary ,
[ rdf:type owl:Restriction ;
owl:onProperty gfo:boundary_of ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass rio:Treatment_time
] ;
rdfs:label "Point in time of treatment"@en ;
skos:altLabel "Treatment time point"@en .
### https://w3id.org/rio/Potential_risk_situation
rio:Potential_risk_situation rdf:type owl:Class ;
rdfs:subClassOf rio:Treatment_situation ,
[ rdf:type owl:Restriction ;
owl:onProperty gfo:has_property ;
owl:someValuesFrom rio:KPI
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gfo:exists_at ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass rio:Point_in_time_of_risk_detection
] ;
rdfs:label "Potential risk situation"@en ;
skos:definition "Treatment situations that are analyzed for the presence of risks at a specific point in time (of risk detection) are called potential risk situations, as they do not necessarily contain risks."@en .
### https://w3id.org/rio/Risk
rio:Risk rdf:type owl:Class ;
rdfs:subClassOf rio:Composite_property ,
rio:Treatment_situation_property ,
[ rdf:type owl:Restriction ;
owl:onProperty gfo:has_part ;
owl:someValuesFrom rio:KPI
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gfo:property_of ;
owl:someValuesFrom rio:Risk_situation
] ,
[ rdf:type owl:Restriction ;
owl:onProperty rio:risk_for_adverse_situation ;
owl:someValuesFrom rio:Adverse_situation
] ,
[ rdf:type owl:Restriction ;
owl:onProperty rio:risk_in_phase ;
owl:someValuesFrom rio:Treatment_phase
] ;
rdfs:label "Risk"@en ;
skos:definition "A risk for an adverse situation of type AST is a composite property CP such that every situation S possessing the property CP has a possible succeeding situation of type AST, which can be realized with a certain probability."@en ,
"A risk is a composite property CP for which there exists an adverse situation AST such that CP is a risk for the adverse situation AST."@en ;
skos:example "Dura mater infection risk during cochlear implantation: age < 5 month AND no meningitis vaccination AND no antibiotic prevention"@en .
### https://w3id.org/rio/Risk_situation
rio:Risk_situation rdf:type owl:Class ;
rdfs:subClassOf rio:Treatment_situation ,
[ rdf:type owl:Restriction ;
owl:onProperty gfo:has_property ;
owl:someValuesFrom rio:Risk
] ,
[ rdf:type owl:Restriction ;
owl:onProperty rio:succeeding_situation ;
owl:someValuesFrom rio:Adverse_situation
] ;
rdfs:label "Risk situation"@en ;
skos:definition "A risk situation is a treatment situation having at least one risk."@en .
### https://w3id.org/rio/Single_property
rio:Single_property rdf:type owl:Class ;
rdfs:subClassOf gfo:Property ;
rdfs:label "Single property"@en ;
skos:definition "A single property is an atomic property that has no further parts."@en ;
skos:example "Age"@en ,
"Weight"@en .
### https://w3id.org/rio/Treatment
rio:Treatment rdf:type owl:Class ;
rdfs:subClassOf gfo:Situoid ,
[ rdf:type owl:Restriction ;
owl:onProperty gfo:projects_to ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass rio:Treatment_time
] ;
rdfs:label "Treatment"@en ;
skos:definition "A treatment is a process of medical treating a patient in hospital."@en .
### https://w3id.org/rio/Treatment_phase
rio:Treatment_phase rdf:type owl:Class ;
rdfs:subClassOf gfo:Situoid ,
[ rdf:type owl:Restriction ;
owl:onProperty gfo:part_of ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass rio:Treatment
] ;
rdfs:label "Treatment phase"@en ;
skos:definition "A treatment phase is a time-limited part of the treatment."@en ;
skos:example "Anamnesis phase"@en ,
"Indication phase"@en ,
"Intraoperative phase"@en .
### https://w3id.org/rio/Treatment_situation
rio:Treatment_situation rdf:type owl:Class ;
rdfs:subClassOf gfo:Situation ,
[ rdf:type owl:Restriction ;
owl:onProperty gfo:has_property ;
owl:someValuesFrom rio:Treatment_situation_property
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gfo:boundary_of ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass rio:Treatment
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gfo:exists_at ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass rio:Point_in_time_of_treatment
] ;
rdfs:label "Treatment situation"@en ;
skos:definition "A treatment situation is any situation arising during treatment."@en .
### https://w3id.org/rio/Treatment_situation_property
rio:Treatment_situation_property rdf:type owl:Class ;
rdfs:subClassOf gfo:Property ,
[ rdf:type owl:Restriction ;
owl:onProperty gfo:property_of ;
owl:someValuesFrom rio:Treatment_situation
] ;
rdfs:comment "These properties are regarded as properties of the treatment situation."@en ;
rdfs:label "Treatment situation property"@en ;
skos:definition "Treatment situation properties are properties of the treatment process and its participants (such as doctors, medical instruments and patients) that exist in a treatment situation."@en .
### https://w3id.org/rio/Treatment_time
rio:Treatment_time rdf:type owl:Class ;
rdfs:subClassOf gfo:Chronoid ,
[ rdf:type owl:Restriction ;
owl:onProperty gfo:projection_of ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass rio:Treatment
] ;
rdfs:label "Treatment time"@en ;
skos:definition "A treatment time is the time extension (interval) of a treatment."@en .
### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi