-
Notifications
You must be signed in to change notification settings - Fork 1
/
CareRoomMonitoring.owl
186 lines (155 loc) · 15.8 KB
/
CareRoomMonitoring.owl
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
@prefix : <http://IBCNServices.github.io/Accio-Ontology/CareRoomMonitoring.owl#> .
@prefix uo: <http://IBCNServices.github.io/Accio-Ontology/ontologies/uo.owl#> .
@prefix DUL: <http://IBCNServices.github.io/Accio-Ontology/ontologies/DUL.owl#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix ssn: <http://www.w3.org/ns/ssn/> .
@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#> .
@prefix SSNiot: <http://IBCNServices.github.io/Accio-Ontology/SSNiot.owl#> .
@prefix ssnDUL: <http://IBCNServices.github.io/Accio-Ontology/ontologies/ssnDUL.owl#> .
@prefix General: <http://IBCNServices.github.io/Accio-Ontology/General.owl#> .
@prefix SAREFiot: <http://IBCNServices.github.io/Accio-Ontology/SAREFiot.owl#> .
@prefix NurseCall: <http://IBCNServices.github.io/Accio-Ontology/NurseCall.owl#> .
@prefix TaskAccio: <http://IBCNServices.github.io/Accio-Ontology/TaskAccio.owl#> .
@prefix ContextAccio: <http://IBCNServices.github.io/Accio-Ontology/ContextAccio.owl#> .
@prefix Localization: <http://IBCNServices.github.io/Accio-Ontology/Localization.owl#> .
@prefix PersonProfileAccio: <http://IBCNServices.github.io/Accio-Ontology/PersonProfileAccio.owl#> .
@prefix RoleCompetenceAccio: <http://IBCNServices.github.io/Accio-Ontology/RoleCompetenceAccio.owl#> .
@base <http://IBCNServices.github.io/Accio-Ontology/CareRoomMonitoring.owl> .
<http://IBCNServices.github.io/Accio-Ontology/CareRoomMonitoring.owl> rdf:type owl:Ontology ;
owl:imports <http://IBCNServices.github.io/Accio-Ontology/SSNiot.owl> ,
<http://IBCNServices.github.io/Accio-Ontology/RoleCompetenceAccio.owl> .
#################################################################
# Object Properties
#################################################################
### http://IBCNServices.github.io/Accio-Ontology/CareRoomMonitoring.owl#hasDiagnosis
:hasDiagnosis rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf DUL:isDescribedBy ;
rdfs:domain DUL:Entity ;
rdfs:range DUL:Diagnosis .
### http://IBCNServices.github.io/Accio-Ontology/CareRoomMonitoring.owl#hasMedicalSymptom
:hasMedicalSymptom rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf DUL:isDescribedBy ;
rdfs:domain DUL:Diagnosis ;
rdfs:range :MedicalSymptom .
#################################################################
# Classes
#################################################################
### http://IBCNServices.github.io/Accio-Ontology/CareRoomMonitoring.owl#Concussion
:Concussion rdf:type owl:Class ;
rdfs:subClassOf [ owl:intersectionOf ( DUL:Diagnosis
[ rdf:type owl:Restriction ;
owl:onProperty :hasMedicalSymptom ;
owl:someValuesFrom :SensitiveToLight
]
[ rdf:type owl:Restriction ;
owl:onProperty :hasMedicalSymptom ;
owl:someValuesFrom :SensitiveToSound
]
) ;
rdf:type owl:Class
] .
### http://IBCNServices.github.io/Accio-Ontology/CareRoomMonitoring.owl#LightIntensityAboveThresholdFault
:LightIntensityAboveThresholdFault rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Restriction ;
owl:onProperty SSNiot:hasSymptom ;
owl:someValuesFrom :LightIntensityAboveThresholdSymptom
]
[ rdf:type owl:Restriction ;
owl:onProperty <http://www.w3.org/ns/sosa/madeBySensor> ;
owl:someValuesFrom [ rdf:type owl:Restriction ;
owl:onProperty SSNiot:isSubsystemOf ;
owl:someValuesFrom [ rdf:type owl:Restriction ;
owl:onProperty DUL:hasLocation ;
owl:someValuesFrom [ rdf:type owl:Restriction ;
owl:onProperty DUL:isLocationOf ;
owl:someValuesFrom [ owl:intersectionOf ( [ rdf:type owl:Restriction ;
owl:onProperty :hasDiagnosis ;
owl:someValuesFrom [ rdf:type owl:Restriction ;
owl:onProperty :hasMedicalSymptom ;
owl:someValuesFrom :SensitiveToLight
]
]
[ rdf:type owl:Restriction ;
owl:onProperty DUL:hasRole ;
owl:someValuesFrom RoleCompetenceAccio:PatientRole
]
) ;
rdf:type owl:Class
]
]
]
]
]
) ;
rdf:type owl:Class
] ;
rdfs:subClassOf SSNiot:DetectedFault .
### http://IBCNServices.github.io/Accio-Ontology/CareRoomMonitoring.owl#LightIntensityAboveThresholdSymptom
:LightIntensityAboveThresholdSymptom rdf:type owl:Class ;
rdfs:subClassOf SSNiot:ThresholdSymptom .
### http://IBCNServices.github.io/Accio-Ontology/CareRoomMonitoring.owl#MedicalSymptom
:MedicalSymptom rdf:type owl:Class ;
rdfs:subClassOf DUL:Description .
### http://IBCNServices.github.io/Accio-Ontology/CareRoomMonitoring.owl#SensitiveToLight
:SensitiveToLight rdf:type owl:Class ;
rdfs:subClassOf :MedicalSymptom .
### http://IBCNServices.github.io/Accio-Ontology/CareRoomMonitoring.owl#SensitiveToSound
:SensitiveToSound rdf:type owl:Class ;
rdfs:subClassOf :MedicalSymptom .
### http://IBCNServices.github.io/Accio-Ontology/CareRoomMonitoring.owl#SoundAboveThresholdFault
:SoundAboveThresholdFault rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Restriction ;
owl:onProperty SSNiot:hasSymptom ;
owl:someValuesFrom :SoundAboveThresholdSymptom
]
[ rdf:type owl:Restriction ;
owl:onProperty <http://www.w3.org/ns/sosa/madeBySensor> ;
owl:someValuesFrom [ rdf:type owl:Restriction ;
owl:onProperty SSNiot:isSubsystemOf ;
owl:someValuesFrom [ rdf:type owl:Restriction ;
owl:onProperty DUL:hasLocation ;
owl:someValuesFrom [ rdf:type owl:Restriction ;
owl:onProperty DUL:isLocationOf ;
owl:someValuesFrom [ owl:intersectionOf ( [ rdf:type owl:Restriction ;
owl:onProperty :hasDiagnosis ;
owl:someValuesFrom [ rdf:type owl:Restriction ;
owl:onProperty :hasMedicalSymptom ;
owl:someValuesFrom :SensitiveToSound
]
]
[ rdf:type owl:Restriction ;
owl:onProperty DUL:hasRole ;
owl:someValuesFrom RoleCompetenceAccio:PatientRole
]
) ;
rdf:type owl:Class
]
]
]
]
]
) ;
rdf:type owl:Class
] ;
rdfs:subClassOf SSNiot:DetectedFault .
### http://IBCNServices.github.io/Accio-Ontology/CareRoomMonitoring.owl#SoundAboveThresholdSymptom
:SoundAboveThresholdSymptom rdf:type owl:Class ;
rdfs:subClassOf SSNiot:ThresholdSymptom .
#################################################################
# Individuals
#################################################################
### http://IBCNServices.github.io/Accio-Ontology/CareRoomMonitoring.owl#_Concussion
:_Concussion rdf:type owl:NamedIndividual ,
:Concussion ;
:hasMedicalSymptom :_SensitiveToLight ,
:_SensitiveToSound .
### http://IBCNServices.github.io/Accio-Ontology/CareRoomMonitoring.owl#_SensitiveToLight
:_SensitiveToLight rdf:type owl:NamedIndividual ,
:SensitiveToLight .
### http://IBCNServices.github.io/Accio-Ontology/CareRoomMonitoring.owl#_SensitiveToSound
:_SensitiveToSound rdf:type owl:NamedIndividual ,
:SensitiveToSound .
### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi