Newer
Older
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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
@prefix : <https://saref.etsi.org/s4ehaw#> .
@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 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 voaf: <http://purl.org/vocommons/voaf#> .
@prefix s4ehaw: <https://saref.etsi.org/s4ehaw#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@base <https://saref.etsi.org/saref4ehaw#> .
<https://saref.etsi.org/saref4ehaw#> rdf:type owl:Ontology ;
owl:versionIRI <https://saref.etsi.org/saref4ehaw/v0.1.2/saref4ehaw#> ;
dcterms:contributor <https://www.linkedin.com/in/marcgirodgenet/> ;
dcterms:created "start date of the STF 2019-01-01"^^xsd:date ;
dcterms:description "saref4ehaw is an extension of SAREF for eHealth Ageing Well"@en ;
dcterms:issued "date when the document is online"^^xsd:date ;
dcterms:license <https://forge.etsi.org/etsi-software-license> ;
dcterms:modified "do not set this"^^xsd:date ;
dcterms:publisher <https://www.etsi.org/> ;
dcterms:source <https://forge.etsi.org/rep/SAREF/saref4ehaw/> ;
dcterms:title "saref4ehaw: an extension of SAREF for eHealth Ageing Well"@en ;
vann:preferredNamespacePrefix "s4ehaw" ;
vann:preferredNamespaceUri "https://saref.etsi.org/saref4ehaw#" ;
owl:versionInfo "v0.1.2" .
#################################################################
# SAREF4EHAW -- Annotation properties
#################################################################
### http://purl.org/dc/terms/contributor
dcterms:contributor rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/created
dcterms:created rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/creator
dcterms:creator rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/description
dcterms:description rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/issued
dcterms:issued rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/license
dcterms:license rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/modified
dcterms:modified rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/publisher
dcterms:publisher rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/source
dcterms:source rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/title
dcterms:title 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 .
#################################################################
# SAREF4EHAW -- Object Properties
#################################################################
### https://saref.etsi.org/s4ehaw#hasContact
s4ehaw:hasContact rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:HealthDevice ;
rdfs:range s4ehaw:Conctact ;
rdfs:comment """Defines the relatonship between a health Device that has one or multiple contacts (e.g. the patient or user that is sensed by this device, the caregiver that is using the health device)""" ;
rdfs:label "has contact"@en .
### https://saref.etsi.org/s4ehaw#isUsedFor
s4ehaw:IsUsedFor rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:HealthDevice ;
rdfs:range s4ehaw:Process ;
rdfs:comment """Defines the relatonship between a health device is used for certain process (temperature measurement, blood pressure measurement, insulin regulation)""" ;
rdfs:label "is used for"@en .
### https://saref.etsi.org/s4ehaw#isUsedFor
s4ehaw:IsUsedFor rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:FunctionalDevice ;
rdfs:range s4ehaw:Process ;
rdfs:comment """Defines the relatonship between a non purely health device called functional device and that is used for certain process (luminosity measurement, air pressure measurement, heat level measurement)""" ;
rdfs:label "is used for"@en .
### https://saref.etsi.org/s4ehaw#contains
s4ehaw:contains rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:Ban ;
rdfs:range s4ehaw:HealthDevice ;
rdfs:comment """Defines the relatonship between a Body Area Network or BAN that contains one or multiple health devices""" ;
rdfs:label "contains"@en .
### https://saref.etsi.org/s4ehaw#hasContact
s4ehaw:hasContact rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:Ban ;
rdfs:range s4ehaw:Conctact ;
rdfs:comment """Defines the relatonship between a BAN that has one or multiple contacts (e.g. the patient or user that is monitored through this BAN, the caregiver that is using this BAN for monitoring purposes)""" ;
rdfs:label "has contact"@en .
### https://saref.etsi.org/s4ehaw#hasCommunicationProcess
s4ehaw:hasCommunicationProcess rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:Ban ;
rdfs:range s4ehaw:CommunicationProcess ;
rdfs:comment """Defines the relatonship between a BAN that has a communication process that is the type of communication carried out between BAN devices and BAN Hub""" ;
rdfs:label "has communication process"@en .
### https://saref.etsi.org/s4ehaw#elects
s4ehaw:elects rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:Ban ;
rdfs:range s4ehaw:Hub ;
rdfs:comment """Defines the relatonship between a Body Area Network or BAN that elects one hub that mainly plays the role of both a data concentrator and a network GW""" ;
rdfs:label "elects"@en .
### https://saref.etsi.org/s4ehaw#isActor
s4ehaw:isActor rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:Contact ;
rdfs:range s4ehaw:Actor ;
rdfs:comment """Defines the relatonship between a contact that is an actor of an eHealth system (caregiver or patient or user or halper)""" ;
rdfs:label "is actor"@en .
### https://saref.etsi.org/s4ehaw#hasResponsabilityParty
s4ehaw:hasResponsabilityParty rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:Contact ;
rdfs:range s4ehaw:ResponsabilityParty ;
rdfs:comment """Defines the relatonship between a contact that has a responsability party which plays the role of the reference of the patient/user. It should be an organization or a person""" ;
rdfs:label "has responsability party"@en .
### https://saref.etsi.org/s4ehaw#isActor
s4ehaw:isActor rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:ResponsabilityParty ;
rdfs:range s4ehaw:Actor ;
rdfs:comment """Defines the relatonship between a ResponsabilityParty that is an actor of an eHealth system""" ;
rdfs:label "is actor"@en .
### https://saref.etsi.org/s4ehaw#isActor
s4ehaw:isActor rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:Caregiver ;
rdfs:range s4ehaw:Actor ;
rdfs:comment """Defines the relatonship between a caregiver that is an actor of an eHealth system""" ;
rdfs:label "is actor"@en .
### https://saref.etsi.org/s4ehaw#isActor
s4ehaw:isActor rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:Patient ;
rdfs:range s4ehaw:Actor ;
rdfs:comment """Defines the relatonship between patient that is an actor of an eHealth system""" ;
rdfs:label "is actor"@en .
### https://saref.etsi.org/s4ehaw#isActor
s4ehaw:isActor rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:User ;
rdfs:range s4ehaw:Actor ;
rdfs:comment """Defines the relatonship between a monitored person called user and that is an actor of an eHealth system""" ;
rdfs:label "is actor"@en .
### https://saref.etsi.org/s4ehaw#isActor
s4ehaw:isActor rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:Helper ;
rdfs:range s4ehaw:Actor ;
rdfs:comment """Defines the relatonship between a Helper (family member, friend or neighbor of a patient) that is an actor of an eHealth system""" ;
rdfs:label "is actor"@en .
### https://saref.etsi.org/s4ehaw#hasParticipants
s4ehaw:hasParticipants rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:MeasurementSession ;
rdfs:range s4ehaw:Actor ;
rdfs:comment """Defines the relatonship between a measurement session that has actors of an eHealth system as participants (caregiver controling the session, patient monitored during the session)""" ;
rdfs:label "has participants"@en .
### https://saref.etsi.org/s4ehaw#hasParticipants
s4ehaw:hasParticipants rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:MeasurementSession ;
rdfs:range s4ehaw:HealthDevice ;
rdfs:comment """Defines the relatonship between a measurement session that has one or multiple health devices as participants (sensor, actuator, wearables)""" ;
rdfs:label "has participants"@en .
### https://saref.etsi.org/s4ehaw#hasData
s4ehaw:hasData rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:Process ;
rdfs:range s4ehaw:Data ;
rdfs:comment """Defines the relatonship between a process that has has one or many data, for example a tracking process shall include latitude, longitude and speed data""" ;
rdfs:label "has data"@en .
### https://saref.etsi.org/s4ehaw#hasCommand
s4ehaw:hasCommand rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:Process ;
rdfs:range saref:Command ;
rdfs:comment """Defines the relatonship between a process that has a command (a directive that a device must support to perform a given process)""" ;
rdfs:label "has command"@en .
### https://saref.etsi.org/s4ehaw#hasConstraints
s4ehaw:hasConstraints rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:Data ;
rdfs:range s4ehaw:Constraints ;
rdfs:comment """Defines the relatonship between a data that has constraints (validity, operating, security...)""" ;
rdfs:label "has constraints"@en .
### https://saref.etsi.org/s4ehaw#hasMeasurement
s4ehaw:hasMesurement rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:Data ;
rdfs:range s4ehaw:Measurement ;
rdfs:comment """Defines the relatonship between data that has measurement""" ;
rdfs:label "has measurement"@en .
### https://saref.etsi.org/s4ehaw#hasTimeSeriesMeasurements
s4ehaw:hasTimeSeriesMesurements rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:Data ;
rdfs:range s4ehaw:TimeSeriesMeasurements ;
rdfs:comment """Defines the relatonship between data that has time series measurements""" ;
rdfs:label "has time series measurements"@en .
### https://saref.etsi.org/s4ehaw#isMeasuredIn
s4ehaw:isMeasuredIn rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:Measurement ;
rdfs:range s4ehaw:UnitOfMeasure ;
rdfs:comment """Defines the relatonship between a measurement that is measured in a given unit of measure""" ;
rdfs:label "is measured in"@en .
### https://saref.etsi.org/s4ehaw#isMeasuredIn
s4ehaw:isMeasuredIn rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:TimeSeriesMeasurements ;
rdfs:range s4ehaw:UnitOfMeasure ;
rdfs:comment """Defines the relatonship between time series measurements that are measured in a given unit of measure""" ;
rdfs:label "is measured in"@en .
### https://saref.etsi.org/saref#offers
saref:offers rdf:type owl:ObjectProperty ;
rdfs:domain saref:Device ;
rdfs:range saref:Service ;
rdfs:comment """Defines the relatonship between a device that offers services""" ;
rdfs:label "offers"@en .
### https://saref.etsi.org/s4ehaw#hasLocation
s4ehaw:hasLocation rdf:type owl:ObjectProperty ;
rdfs:domain saref:Device ;
rdfs:range s4ehaw:Location ;
rdfs:comment """Defines the relatonship between a device that has a location that is mainly its position and/or its geolocation of the device""" ;
rdfs:label "has location"@en .
### https://saref.etsi.org/s4ehaw#hasInterface
s4ehaw:hasInterface rdf:type owl:ObjectProperty ;
rdfs:domain saref:Device ;
rdfs:range s4ehaw:Interface ;
rdfs:comment """Defines the relatonship between a device that has one or multiple interfaces (Bluetooth, UWB, IEEE 802.15.6, serial interface...)""" ;
rdfs:label "has interface"@en .
### https://saref.etsi.org/s4ehaw#hasDeviceType
s4ehaw:hasDeviceType rdf:type owl:ObjectProperty ;
rdfs:domain saref:Device ;
rdfs:range s4ehaw:DeviceType ;
rdfs:comment """Defines the relatonship between a device that has a device type describing the physical characteristics of the device""" ;
rdfs:label "has device type"@en .
### https://saref.etsi.org/s4ehaw#hasEnergySource
s4ehaw:hasEnergySource rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:DeviceType ;
rdfs:range s4ehaw:EnergySource ;
rdfs:comment """Defines the relatonship between a device type that has energy source mainly describing battery related capabilities of the device (number, type, available level...)""" ;
rdfs:label "has energy source"@en .
### https://saref.etsi.org/s4ehaw#hasProcessor
s4ehaw:hasProcessor rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:DeviceType ;
rdfs:range s4ehaw:Processor ;
rdfs:comment """Defines the relatonship between a device type that has processor describing the processing capabilities of the device""" ;
rdfs:label "has processor"@en .
### https://saref.etsi.org/s4ehaw#hasInterfaceType
s4ehaw:hasInterfaceType rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:Interface ;
rdfs:range s4ehaw:InterfaceType ;
rdfs:comment """Defines the relatonship between a device interface that has an interface type that describes the standard characteristics of the interface protocol/functional layerof the device and that is added for redundancy avoidance""" ;
rdfs:label "has interface type"@en .
### https://saref.etsi.org/s4ehaw#hasInterfaceType
s4ehaw:hasInterfaceType rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:DeviceType ;
rdfs:range s4ehaw:InterfaceType ;
rdfs:comment """Defines the relatonship between a device type that has an given interface type that describes the standard characteristics of the interface protocol/functional layer of the device and that is added for redundancy avoidance""" ;
rdfs:label "has interface type"@en .
### https://saref.etsi.org/s4ehaw#presents
s4ehaw:presents rdf:type owl:ObjectProperty ;
rdfs:domain saref:Service ;
rdfs:range s4ehaw:ServiceProfile ;
rdfs:comment """Defines the relatonship between a service that presents a service profile (what the service does)""" ;
rdfs:label "presents"@en .
### https://saref.etsi.org/s4ehaw#supports
s4ehaw:supports rdf:type owl:ObjectProperty ;
rdfs:domain saref:Service ;
rdfs:range s4ehaw:ServiceGrounding ;
rdfs:comment """Defines the relatonship between a service that supports a service grounding (how to access the service)""" ;
rdfs:label "supports"@en .
### https://saref.etsi.org/s4ehaw#isDescribedBy
s4ehaw:isDescribedBy rdf:type owl:ObjectProperty ;
rdfs:domain saref:Service ;
rdfs:range s4ehaw:ServiceProcess ;
rdfs:comment """Defines the relatonship between a service that is described by a service process (how the service works)""" ;
rdfs:label "is described by"@en .
#################################################################
# SAREF4EHAW -- Data properties
#################################################################
### http://xmlns.com/foaf/0.1/name
foaf:name rdf:type owl:DatatypeProperty .
#################################################################
# SAREF4EHAW -- Classes
#################################################################
### http://purl.org/vocommons/voaf#Vocabulary
voaf:Vocabulary rdf:type owl:Class .
### http://xmlns.com/foaf/0.1/Person
foaf:Person rdf:type owl:Class .
### https://saref.etsi.org/saref#Device
saref:Device rdf:type owl:Class .
### https://saref.etsi.org/s4ehaw#HealthDevice
s4ehaw:HealthDevice rdf:type owl:Class ;
rdfs:subClassOf saref:Device .
### https://saref.etsi.org/s4ehaw#FunctionalDevice
s4ehaw:FunctionalDevice rdf:type owl:Class ;
rdfs:subClassOf saref:Device .
### https://saref.etsi.org/s4ehaw#Hub
s4ehaw:Hub rdf:type owl:Class ;
rdfs:subClassOf s4ehaw:HealthDevice .
### https://saref.etsi.org/s4ehaw#Sensor
s4ehaw:Sensor rdf:type owl:Class ;
rdfs:subClassOf s4ehaw:HealthDevice .
### https://saref.etsi.org/s4ehaw#Actuator
s4ehaw:Actuator rdf:type owl:Class ;
rdfs:subClassOf s4ehaw:HealthDevice .
### https://saref.etsi.org/s4ehaw#Wearable
s4ehaw:Wearable rdf:type owl:Class ;
rdfs:subClassOf s4ehaw:HealthDevice .
### https://saref.etsi.org/s4ehaw#Ban
s4ehaw:Ban rdf:type owl:Class .
### https://saref.etsi.org/s4ehaw#CommunicationProcess
s4ehaw:CommunicationProcess rdf:type owl:Class .
### https://saref.etsi.org/s4ehaw#Contact
s4ehaw:Contact rdf:type owl:Class .
### https://saref.etsi.org/s4ehaw#ResponsabilityParty
s4ehaw:ResponsabilityParty rdf:type owl:Class .
### https://saref.etsi.org/s4ehaw#Actor
s4ehaw:Actor rdf:type owl:Class .
### https://saref.etsi.org/s4ehaw#Caregiver
s4ehaw:Caregiver rdf:type owl:Class .
### https://saref.etsi.org/s4ehaw#Patient
s4ehaw:Patient rdf:type owl:Class .
### https://saref.etsi.org/s4ehaw#User
s4ehaw:User rdf:type owl:Class .
### https://saref.etsi.org/s4ehaw#Helper
s4ehaw:Helper rdf:type owl:Class .
### https://saref.etsi.org/s4ehaw#MeasurementSession
s4ehaw:MeasurementSession rdf:type owl:Class .
### https://saref.etsi.org/s4ehaw#Process
s4ehaw:Process rdf:type owl:Class .
### https://saref.etsi.org/saref#Command
saref:Command rdf:type owl:Class .
### https://saref.etsi.org/s4ehaw#MeasurementProcess
s4ehaw:MeasurementProcess rdf:type owl:Class ;
rdfs:subClassOf s4ehaw:Process .
### https://saref.etsi.org/s4ehaw#Action
s4ehaw:Action rdf:type owl:Class ;
rdfs:subClassOf saref:Command .
### https://saref.etsi.org/s4ehaw#Data
s4ehaw:Data rdf:type owl:Class .
### https://saref.etsi.org/s4ehaw#Constraints
s4ehaw:Constraints rdf:type owl:Class .
### https://saref.etsi.org/s4ehaw#Measurement
s4ehaw:Measurement rdf:type owl:Class .
### https://saref.etsi.org/s4ehaw#TimeSeriesMeasurements
s4ehaw:TimeSeriesMeasurements rdf:type owl:Class .
### https://saref.etsi.org/s4ehaw#UnitOfMeasure
s4ehaw:UnitOfMeasure rdf:type owl:Class .
### https://saref.etsi.org/s4ehaw#DeviceType
s4ehaw:DeviceType rdf:type owl:Class .
### https://saref.etsi.org/s4ehaw#Processor
s4ehaw:Processor rdf:type owl:Class .
### https://saref.etsi.org/s4ehaw#EnergySource
s4ehaw:EnergySource rdf:type owl:Class .
### https://saref.etsi.org/s4ehaw#Interface
s4ehaw:Interface rdf:type owl:Class .
### https://saref.etsi.org/s4ehaw#InterfaceType
s4ehaw:InterfaceType rdf:type owl:Class .
### https://saref.etsi.org/s4ehaw#Location
s4ehaw:Location rdf:type owl:Class .
### https://saref.etsi.org/saref#Service
saref:Service rdf:type owl:Class .
### https://saref.etsi.org/s4ehaw#ServiceProfile
s4ehaw:ServiceProfile rdf:type owl:Class .
### https://saref.etsi.org/s4ehaw#ServiceGrounding
s4ehaw:ServiceGrounding rdf:type owl:Class .
### https://saref.etsi.org/s4ehaw#ServiceProcess
s4ehaw:ServiceProcess rdf:type owl:Class .
#################################################################
# SAREF4EHAW -- Individuals
#################################################################
### http://www-public.imtbs-tsp.eu/~girodgen/
<http://www-public.imtbs-tsp.eu/~girodgen/> rdf:type owl:NamedIndividual ,
foaf:Person ;
foaf:name "Marc Girod-Genet" .