Newer
Older
### https://saref.etsi.org/s4ehaw/gender
:gender rdf:type owl:DatatypeProperty ;
rdfs:label "gender"@en ;
rdfs:comment "The gender of an actor"@en ;
rdfs:domain :Actor ;
rdfs:range [ rdf:type rdfs:Datatype ;
owl:oneOf [ rdf:type rdf:List ;
rdf:first "female" ;
rdf:rest [ rdf:type rdf:List ;
rdf:first "male" ;
### https://saref.etsi.org/s4ehaw/groundingProtocol
:groundingProtocol rdf:type owl:DatatypeProperty ;
rdfs:label "grounding protocol"@en ;
rdfs:comment "The grounding protocol is the protocol used to transmit the message of the service, e.g. BLE" ;
rdfs:range xsd:string ;
rdfs:domain :ServiceGrounding .
### https://saref.etsi.org/s4ehaw/hasCalculationMethod
:hasCalculationMethod rdf:type owl:DatatypeProperty ;
rdfs:label "has calculation method"@en ;
rdfs:comment "The service process has a calculation method to get the output or result, e.g. the calculation formula to determine the posture of a patient" ;
rdfs:range xsd:string ;
rdfs:domain :ServiceProcess .
:hasEffect rdf:type owl:DatatypeProperty ;
rdfs:label "has effect"@en ;
rdfs:comment "The effect of a service can be an alert, nothing, an activation of another process,etc." ;
rdfs:range xsd:string ;
rdfs:domain :ServiceProcess .
:hasHabits rdf:type owl:DatatypeProperty ;
rdfs:label "has habits"@en ;
rdfs:comment "The habits of the user, e.g. smoking" ,
"The habits of the patient, e.g smoking" ;
rdfs:range xsd:string ;
rdfs:domain :Patient ,
:User .
:hasInput rdf:type owl:DatatypeProperty ;
rdfs:label "has input"@en ;
rdfs:comment "The service process has data input like e.g. the patient ID, the timestamp, the read value from a sensor, etc." ;
rdfs:range xsd:string ;
rdfs:domain :ServiceProcess .
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
### https://saref.etsi.org/s4ehaw/hasOutput
:hasOutput rdf:type owl:DatatypeProperty ;
rdfs:label "has output"@en ;
rdfs:comment "The output is e.g. the calculated value returned by the process, e.g the posture of a patient" ;
rdfs:range xsd:string ;
rdfs:domain :ServiceProcess .
### https://saref.etsi.org/s4ehaw/hasPosture
:hasPosture rdf:type owl:DatatypeProperty ;
rdfs:label "has posture"@en ;
rdfs:comment "The posture of the patient, e.g. lying" ,
"The posture of the user, e.g. lying" ;
rdfs:domain :Patient ,
:User ;
rdfs:range [ rdf:type rdfs:Datatype ;
owl:oneOf [ rdf:type rdf:List ;
rdf:first "exercising" ;
rdf:rest [ rdf:type rdf:List ;
rdf:first "lying" ;
rdf:rest [ rdf:type rdf:List ;
rdf:first "other" ;
rdf:rest [ rdf:type rdf:List ;
rdf:first "running" ;
rdf:rest [ rdf:type rdf:List ;
rdf:first "sitting" ;
rdf:rest [ rdf:type rdf:List ;
rdf:first "walking" ;
rdf:rest rdf:nil
]
]
]
]
]
]
] .
### https://saref.etsi.org/s4ehaw/hasPrecondition
:hasPrecondition rdf:type owl:DatatypeProperty ;
rdfs:label "has precondition"@en ;
rdfs:comment "The conditions that are imposed over the inputs of the process and the process must hold to be successufully invoked" ;
rdfs:range xsd:string ;
rdfs:domain :ServiceProcess .
### https://saref.etsi.org/s4ehaw/hasResult
:hasResult rdf:type owl:DatatypeProperty ;
rdfs:label "has result"@en ;
rdfs:comment "The process can have many results for the same output. Those results may include a message that should be displayed, an alert, etc." ;
rdfs:range xsd:string ;
rdfs:domain :ServiceProcess .
### https://saref.etsi.org/s4ehaw/impairment
:impairment rdf:type owl:DatatypeProperty ;
rdfs:label "impairment"@en ;
rdfs:comment "The impairment type of the patient, e.g. deaf, visual" ;
rdfs:domain :Patient ;
rdfs:range [ rdf:type rdfs:Datatype ;
owl:oneOf [ rdf:type rdf:List ;
rdf:first "deaf" ;
rdf:rest [ rdf:type rdf:List ;
rdf:first "handling" ;
rdf:rest [ rdf:type rdf:List ;
rdf:first "hearing" ;
rdf:rest [ rdf:type rdf:List ;
rdf:first "visual" ;
rdf:rest rdf:nil
]
]
]
]
] .
### https://saref.etsi.org/s4ehaw/interfaceAddress
:interfaceAddress rdf:type owl:DatatypeProperty ;
rdfs:label "interface address"@en ;
rdfs:comment "The interface address. The interface may have many addresses like MAC address, IP address or others." ;
rdfs:range xsd:string ;
rdfs:domain :InterfaceType .
### https://saref.etsi.org/s4ehaw/interfaceDescription
:interfaceDescription rdf:type owl:DatatypeProperty ;
rdfs:label "interface description"@en ;
rdfs:comment "The interface type description" ;
rdfs:range xsd:string ;
rdfs:domain :InterfaceType .
### https://saref.etsi.org/s4ehaw/interfaceId
:interfaceId rdf:type owl:DatatypeProperty ;
rdfs:label "interface id"@en ;
rdfs:comment "The interface Unique ID, i.e and URI for Linked Data compatibility purposes." ;
rdfs:range xsd:anyURI ;
rdfs:domain :Interface .
### https://saref.etsi.org/s4ehaw/interfaceProtocol
:interfaceProtocol rdf:type owl:DatatypeProperty ;
rdfs:label "interface protocol"@en ;
rdfs:comment "The interface protocol can be BLE, serial, ethernet, etc." ;
rdfs:range xsd:string ;
rdfs:domain :InterfaceType .
### https://saref.etsi.org/s4ehaw/isDerivedData
:isDerivedData rdf:type owl:DatatypeProperty ;
rdfs:label "is derived data"@en ;
rdfs:comment "Is derived data is a Boolean property to indicate if the data is a row data or a calculated/derived data from other one. "@en ;
rdfs:range xsd:boolean ;
rdfs:domain :Data .
### https://saref.etsi.org/s4ehaw/isGateway
:isGateway rdf:type owl:DatatypeProperty ;
rdfs:label "is gateway"@en ;
rdfs:comment "This boolean variable indicates if the interface is a gateway or not." ;
rdfs:range xsd:boolean ;
rdfs:domain :Interface .
### https://saref.etsi.org/s4ehaw/lastName
:lastName rdf:type owl:DatatypeProperty ;
rdfs:label "last name"@en ;
rdfs:comment "The familly name of an actor."@en ;
rdfs:range xsd:string ;
rdfs:domain :Actor .
### https://saref.etsi.org/s4ehaw/latency
:latency rdf:type owl:DatatypeProperty ;
rdfs:label "latency"@en ;
rdfs:comment "The latency is the time interval between the stimulation and response of a process"@en ;
rdfs:range xsd:float ;
rdfs:domain :Process .
### https://saref.etsi.org/s4ehaw/lifetime
:lifetime rdf:type owl:DatatypeProperty ;
rdfs:label "lifetime"@en ;
rdfs:comment "The BAN lifetime, e.g. BAN for entertainment purposes should have a lifetime of weeks or few years whereas BAN dedicated for assisted living or anomaly monitoring should last for many years." ;
rdfs:range xsd:dateTime ;
rdfs:domain :Ban .
### https://saref.etsi.org/s4ehaw/location
:location rdf:type owl:DatatypeProperty ;
rdfs:label "location"@en ;
rdfs:comment "The geolocation of the BAN, when available and needed, shall be given relatively to the the location - geolocation as standardized ISO 6709 - of the patient wearing the WBAN." ;
rdfs:range xsd:string ;
rdfs:domain :Ban .
### https://saref.etsi.org/s4ehaw/manufacturer
:manufacturer rdf:type owl:DatatypeProperty ;
rdfs:label "manufacturer"@en ;
rdfs:comment "The manufacturer name of the embedded processor of a Health device, e.g. intel." ;
rdfs:range xsd:string ;
rdfs:domain :Power .
### https://saref.etsi.org/s4ehaw/maximumFlash
:maximumFlash rdf:type owl:DatatypeProperty ;
rdfs:label "maximum flash"@en ;
rdfs:comment "Indicates the maximum flash memory space for a Health device" ;
rdfs:range xsd:double ;
rdfs:domain :Power .
### https://saref.etsi.org/s4ehaw/maximumRam
:maximumRam rdf:type owl:DatatypeProperty ;
rdfs:label "maximum ram"@en ;
rdfs:comment "Indicates the maximum volatile memory space for a Health device" ;
rdfs:range xsd:double ;
rdfs:domain :Power .
### https://saref.etsi.org/s4ehaw/maximumValue
:maximumValue rdf:type owl:DatatypeProperty ;
rdfs:label "maximum value"@en ;
rdfs:comment "The maximum allowable value of a measurement"@en ;
rdfs:range xsd:double ;
rdfs:domain :Validity .
### https://saref.etsi.org/s4ehaw/minimumValue
:minimumValue rdf:type owl:DatatypeProperty ;
rdfs:label "minimum value"@en ;
rdfs:comment "The minimum allowable value of a measurement"@en ;
rdfs:range xsd:double ;
rdfs:domain :Validity .
### https://saref.etsi.org/s4ehaw/modeId
:modeId rdf:type owl:DatatypeProperty ;
rdfs:label "mode id"@en ;
rdfs:comment "The mode id identifies each mode, e.g. identifier for sleeping mode"@en ;
rdfs:range xsd:anyURI ;
rdfs:domain :Mode .
### https://saref.etsi.org/s4ehaw/modeName
:modeName rdf:type owl:DatatypeProperty ;
rdfs:label "mode name"@en ;
rdfs:comment "The mode name of a device, e.g. sleeping"@en ;
rdfs:range xsd:string ;
rdfs:domain :Mode .
### https://saref.etsi.org/s4ehaw/phenomena
:phenomena rdf:type owl:DatatypeProperty ;
rdfs:label "phenomena "@en ;
rdfs:comment "The BAN monitors a specific phenomenon - burned calories during exercises, glucose level... -."@en ;
rdfs:range xsd:string ;
rdfs:domain :Ban .
### https://saref.etsi.org/s4ehaw/phoneNumber
rdfs:comment "The phone number of an actor, in international format."@en ;
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
rdfs:range xsd:string ;
rdfs:domain :Actor .
### https://saref.etsi.org/s4ehaw/portNumber
:portNumber rdf:type owl:DatatypeProperty ;
rdfs:label "port number"@en ;
rdfs:comment "The port number used to offer the service" ;
rdfs:range xsd:positiveInteger ;
rdfs:domain :ServiceGrounding .
### https://saref.etsi.org/s4ehaw/precision
:precision rdf:type owl:DatatypeProperty ;
rdfs:label "precision"@en ;
rdfs:comment "Precision of a process describes the closeness of the measurements to each other for a process."@en ;
rdfs:range xsd:float ;
rdfs:domain :Process .
:processId rdf:type owl:DatatypeProperty ;
rdfs:label "process id"@en ;
rdfs:comment "The process Unique ID, i.e. and URI for Linked Data compatibility purposes." ,
"The measurement process Unique ID, i.e. and URI for Linked Data compatibility purposes." ;
rdfs:range xsd:anyURI ;
rdfs:domain :MeasurementProcess ,
:Process .
### https://saref.etsi.org/s4ehaw/processorId
:processorId rdf:type owl:DatatypeProperty ;
rdfs:label "processor id"@en ;
rdfs:comment "The processor identifier should identify each processor" ;
rdfs:range xsd:string ;
rdfs:domain :Power .
### https://saref.etsi.org/s4ehaw/rechargeable
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
:rechargeable rdf:type owl:DatatypeProperty ;
rdfs:label "rechargeable"@en ;
rdfs:comment "This boolean variable indicates if the source of energy of the eHealth Device is rechargeable or not, e.g. has battery" ;
rdfs:range xsd:boolean ;
rdfs:domain :Energy .
### https://saref.etsi.org/s4ehaw/remainingBatteryLevel
:remainingBatteryLevel rdf:type owl:DatatypeProperty ;
rdfs:label "remaining battery level"@en ;
rdfs:comment "The level of remaining battery for a given energy source of a eHealth device"@en ;
rdfs:range xsd:double ;
rdfs:domain :Energy .
### https://saref.etsi.org/s4ehaw/responsibilityPartyId
:responsibilityPartyId rdf:type owl:DatatypeProperty ;
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
rdfs:label "responsibility party id"@en ;
rdfs:comment "The responsibility party Unique ID, i.e and URI for Linked Data compatibility purposes." ;
rdfs:range xsd:anyURI ;
rdfs:domain :ResponsibilityParty .
### https://saref.etsi.org/s4ehaw/sampleTime
:sampleTime rdf:type owl:DatatypeProperty ;
rdfs:label "sample time"@en ;
rdfs:comment "The sample time of the process"@en ;
rdfs:range xsd:float ;
rdfs:domain :Process .
### https://saref.etsi.org/s4ehaw/sendingFrequency
:sendingFrequency rdf:type owl:DatatypeProperty ;
rdfs:label "sending frequency"@en ;
rdfs:comment "Defines the sending frequency at an health device level." ;
rdfs:range xsd:float ;
rdfs:domain :Periodic .
rdfs:label "serial number"@en ;
rdfs:comment "The serial number of the Health Device." ,
"The serial number of the Functional Device." ;
rdfs:range xsd:string ;
rdfs:domain :FunctionalDevice ,
:HealthDevice .
### https://saref.etsi.org/s4ehaw/serviceDescription
:serviceDescription rdf:type owl:DatatypeProperty ;
rdfs:label "service description"@en ;
rdfs:comment "The service description should describe the offered service like e.g. heart rate measurement" ;
rdfs:range xsd:string ;
rdfs:domain :ServiceProfile .
### https://saref.etsi.org/s4ehaw/serviceName
:serviceName rdf:type owl:DatatypeProperty ;
rdfs:label "service name"@en ;
rdfs:comment "The service name identify the offered service, e.g heart rate" ;
rdfs:range xsd:string ;
rdfs:domain :ServiceProfile .
:sourceType rdf:type owl:DatatypeProperty ;
rdfs:label "source type"@en ;
rdfs:comment "The source type is the type of energy source of a Health device. It can be solar, battery, electricity, etc." ;
rdfs:range xsd:string ;
rdfs:domain :Energy .
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
:topology rdf:type owl:DatatypeProperty ;
rdfs:label "topology"@en ;
rdfs:comment "The BAN physical topology type, i.e Adhoc or Stars or Mesh or Others." ;
rdfs:domain :Ban ;
rdfs:range [ rdf:type rdfs:Datatype ;
owl:oneOf [ rdf:type rdf:List ;
rdf:first "Adhoc" ;
rdf:rest [ rdf:type rdf:List ;
rdf:first "Mesh" ;
rdf:rest [ rdf:type rdf:List ;
rdf:first "Others" ;
rdf:rest [ rdf:type rdf:List ;
rdf:first "Stars" ;
rdf:rest rdf:nil
]
]
]
]
] .
rdfs:label "user id"@en ;
rdfs:comment "The user Unique ID, i.e and URI for Linked Data compatibility purposes." ,
"The helper Unique ID, i.e and URI for Linked Data compatibility purposes." ,
"The patient Unique ID, i.e and URI for Linked Data compatibility purposes." ,
"The caregiver Unique ID, i.e and URI for Linked Data compatibility purposes." ;
rdfs:range xsd:anyURI ;
rdfs:domain :Caregiver ,
:Helper ,
:Patient ,
:User .
:velocity rdf:type owl:DatatypeProperty ;
rdfs:label "velocity"@en ;
rdfs:comment "The velocity of a moving device"@en ;
rdfs:range xsd:float ;
rdfs:domain :DeviceType .
#################################################################
#################################################################
### http://purl.org/vocommons/voaf#Vocabulary
:Actor rdf:type owl:Class ;
owl:equivalentClass :Contact .
:Address rdf:type owl:Class ;
rdfs:subClassOf :Physical .
:Alarm rdf:type owl:Class ;
rdfs:subClassOf saref:Command .
### https://saref.etsi.org/s4ehaw/BodySurface
:BodySurface rdf:type owl:Class ;
rdfs:subClassOf :Location .
:Caregiver rdf:type owl:Class ;
rdfs:subClassOf :Actor .
### https://saref.etsi.org/s4ehaw/CommunicationProcess
### https://saref.etsi.org/s4ehaw/Constraints
:Constraints rdf:type owl:Class .
### https://saref.etsi.org/s4ehaw/Contact
:Contact rdf:type owl:Class .
:Coordinate rdf:type owl:Class ;
rdfs:subClassOf :Physical .
### https://saref.etsi.org/s4ehaw/Environment
:Environment rdf:type owl:Class ;
rdfs:subClassOf :ServiceCategory .
### https://saref.etsi.org/s4ehaw/EventDriven
:EventDriven rdf:type owl:Class ;
rdfs:subClassOf :CommunicationProcess .
### https://saref.etsi.org/s4ehaw/FunctionalDevice
:FunctionalDevice rdf:type owl:Class ;
rdfs:subClassOf saref:Device .
### https://saref.etsi.org/s4ehaw/HealthDevice
:HealthDevice rdf:type owl:Class ;
rdfs:subClassOf saref:Device .
:Helper rdf:type owl:Class ;
rdfs:subClassOf :Actor .
:Hub rdf:type owl:Class ;
rdfs:subClassOf :HealthDevice .
:Implant rdf:type owl:Class ;
rdfs:subClassOf :Location .
### https://saref.etsi.org/s4ehaw/InterfaceType
:InterfaceType rdf:type owl:Class .
:Legal rdf:type owl:Class ;
rdfs:subClassOf :Constraints ;
rdfs:comment "This is an empty container for describing the legal constraints a data can be submitted to, like e.g. anonymization."@en .
### https://saref.etsi.org/s4ehaw/MeasurementProcess
:MeasurementProcess rdf:type owl:Class ;
rdfs:subClassOf :Process .
### https://saref.etsi.org/s4ehaw/MeasurementSession
:MeasurementSession rdf:type owl:Class .
:Mode rdf:type owl:Class ;
rdf:comment "The dynamic characteristics of a eHealth Device that vary during its lifetime or its BAN lifetime" .
### https://saref.etsi.org/s4ehaw/OnRequest
:OnRequest rdf:type owl:Class ;
rdfs:subClassOf :CommunicationProcess .
:Operating rdf:type owl:Class ;
rdfs:subClassOf :Constraints ;
rdfs:comment "This is an empty container for describing the operating constraints of a device, e.g. prescribed humidity and temperature range, etc.."@en .
:Patient rdf:type owl:Class ;
rdfs:subClassOf :Actor .
:Periodic rdf:type owl:Class ;
rdfs:subClassOf :CommunicationProcess .
:Physical rdf:type owl:Class ;
rdfs:subClassOf :Location .
:Power rdf:type owl:Class .
### https://saref.etsi.org/s4ehaw/Process
:Process rdf:type owl:Class .
:Remainder rdf:type owl:Class ;
rdfs:subClassOf saref:Command .