Newer
Older
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
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
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
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
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
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
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
saref:SensingFunction rdf:type owl:Class ;
rdfs:subClassOf saref:Function ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:hasSensingRange ;
owl:someValuesFrom saref:Measurement
] ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:hasCommand ;
owl:allValuesFrom saref:GetSensingDataCommand
] ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:hasSensorType ;
owl:allValuesFrom saref:Property
] ;
rdfs:comment "A function that allows to transmit data from sensors, such as measurement values (e.g., temperature) or sensing data (e.g., occupancy)"^^xsd:string ;
rdfs:label "Sensing function"^^xsd:string .
### https://w3id.org/saref#Sensor
saref:Sensor rdf:type owl:Class ;
rdfs:subClassOf saref:FunctionRelated ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:hasFunction ;
owl:someValuesFrom saref:SensingFunction
] ;
rdfs:comment "A device that detects and responds to events or changes in the physical environment such as light, motion, or temperature changes. Further, a device of category saref:Sensor that performs a saref:SensingFunction."^^xsd:string ;
rdfs:label "Sensor"^^xsd:string .
### https://w3id.org/saref#Service
saref:Service rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty saref:isOfferedBy ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass saref:Device
] ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:represents ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass saref:Function
] ;
rdfs:comment "A service is a representation of a function to a network that makes the function discoverable, registerable, remotely controllable by other devices in the network. A service can represent one or more functions. A Service is offered by a device that wants (a certain set of) its function(s) to be discoverable, registerable, remotely controllable by other devices in the network. A Service must specify the device that is offering the service and the function(s) to be represented."^^xsd:string ;
rdfs:label "Service"^^xsd:string .
### https://w3id.org/saref#SetAbsoluteLevelCommand
saref:SetAbsoluteLevelCommand rdf:type owl:Class ;
rdfs:subClassOf saref:SetLevelCommand ;
rdfs:comment "A type of set level command"^^xsd:string ;
rdfs:label "Set absolute level command"^^xsd:string .
### https://w3id.org/saref#SetLevelCommand
saref:SetLevelCommand rdf:type owl:Class ;
rdfs:subClassOf saref:Command ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:actsUpon ;
owl:allValuesFrom saref:MultiLevelState
] ;
rdfs:comment "A type of command"^^xsd:string ;
rdfs:label "Set level command"^^xsd:string .
### https://w3id.org/saref#SetRelativeLevelCommand
saref:SetRelativeLevelCommand rdf:type owl:Class ;
rdfs:subClassOf saref:SetLevelCommand ;
rdfs:comment "A type of set level command"^^xsd:string ;
rdfs:label "Set relative level command"^^xsd:string .
### https://w3id.org/saref#Smoke
saref:Smoke rdf:type owl:Class ;
rdfs:subClassOf saref:Property ;
rdfs:comment "A saref:Property related to some measurements that are characterized by a certain value that is measured in a unit of measure for smoke"^^xsd:string ;
rdfs:label "Smoke"^^xsd:string .
### https://w3id.org/saref#SmokeSensor
saref:SmokeSensor rdf:type owl:Class ;
rdfs:subClassOf saref:Sensor ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:consistsOf ;
owl:someValuesFrom saref:Sensor
] ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:hasFunction ;
owl:someValuesFrom saref:EventFunction
] ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:hasFunction ;
owl:someValuesFrom saref:SensingFunction
] ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:measuresProperty ;
owl:someValuesFrom saref:Smoke
] ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:accomplishes ;
owl:hasValue saref:Safety
] ;
rdfs:comment "A device that consists of a sensor, has category saref:Sensor, performs the saref:SensingFunction and saref:EventFunction (which notifies that a certain threshold has been exceeded), and is used for the purpose of sensing a property of type saref:Smoke."^^xsd:string ;
rdfs:label "Smoke sensor"^^xsd:string .
### https://w3id.org/saref#StartCommand
saref:StartCommand rdf:type owl:Class ;
rdfs:subClassOf saref:Command ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:actsUpon ;
owl:allValuesFrom saref:StartStopState
] ;
owl:disjointWith saref:StopCommand ;
rdfs:comment "A type of command"^^xsd:string ;
rdfs:label "Start command"^^xsd:string .
### https://w3id.org/saref#StartState
saref:StartState rdf:type owl:Class ;
rdfs:subClassOf saref:StartStopState ;
rdfs:comment "The state of a device that is STARTED"^^xsd:string ;
rdfs:label "Start state"^^xsd:string .
### https://w3id.org/saref#StartStopFunction
saref:StartStopFunction rdf:type owl:Class ;
rdfs:subClassOf saref:ActuatingFunction ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:hasCommand ;
owl:allValuesFrom [ rdf:type owl:Class ;
owl:unionOf ( saref:StartCommand
saref:StopCommand
)
]
] ;
rdfs:comment "An actuating function that allows to start and stop a device"^^xsd:string ;
rdfs:label "Start stop function"^^xsd:string .
### https://w3id.org/saref#StartStopState
saref:StartStopState rdf:type owl:Class ;
rdfs:subClassOf saref:State ;
rdfs:comment "A type of state"^^xsd:string ;
rdfs:label "Start stop state"^^xsd:string .
### https://w3id.org/saref#State
saref:State rdf:type owl:Class ;
rdfs:comment "The state in which a device can be found, e.g, ON/OFF/STANDBY, or ONLINE/OFFLINE. We propose here a list of states that are relevant for the purpose of SAREF, but this list can be extended."^^xsd:string ;
rdfs:label "State"^^xsd:string .
### https://w3id.org/saref#StepDownCommand
saref:StepDownCommand rdf:type owl:Class ;
rdfs:subClassOf saref:Command ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:actsUpon ;
owl:allValuesFrom saref:MultiLevelState
] ;
owl:disjointWith saref:StepUpCommand ;
rdfs:comment "A type of command"^^xsd:string ;
rdfs:label "Step down command"^^xsd:string .
### https://w3id.org/saref#StepUpCommand
saref:StepUpCommand rdf:type owl:Class ;
rdfs:subClassOf saref:Command ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:actsUpon ;
owl:allValuesFrom saref:MultiLevelState
] ;
rdfs:comment "A type of command"^^xsd:string ;
rdfs:label "Step up command"^^xsd:string .
### https://w3id.org/saref#StopCommand
saref:StopCommand rdf:type owl:Class ;
rdfs:subClassOf saref:Command ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:actsUpon ;
owl:allValuesFrom saref:StartStopState
] ;
rdfs:comment "A type of command"^^xsd:string ;
rdfs:label "Stop command"^^xsd:string .
### https://w3id.org/saref#StopState
saref:StopState rdf:type owl:Class ;
rdfs:subClassOf saref:StartStopState ;
rdfs:comment "The state of a device that is STOPPED"^^xsd:string ;
rdfs:label "Stop state"^^xsd:string .
### https://w3id.org/saref#Storage
saref:Storage rdf:type owl:Class ;
rdfs:subClassOf saref:EnergyRelated ;
rdfs:comment "A type of energy-related device that stores energy"^^xsd:string ;
rdfs:label "Storage"^^xsd:string .
### https://w3id.org/saref#Switch
saref:Switch rdf:type owl:Class ;
rdfs:subClassOf saref:Actuator ;
rdfs:comment "A device of category saref:Actuator that performs an actuating function of type saref:OnOffFunction or saref:OpenCloseFunction"^^xsd:string ;
rdfs:label "Switch"^^xsd:string .
### https://w3id.org/saref#SwitchOnService
saref:SwitchOnService rdf:type owl:Class ;
rdfs:subClassOf saref:Service ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:isOfferedBy ;
owl:someValuesFrom saref:LightSwitch
] ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:represents ;
owl:someValuesFrom saref:OnOffFunction
] ;
rdfs:comment "A type of service that represents an on/off function to the network"^^xsd:string ;
rdfs:label "Switch on service"^^xsd:string .
### https://w3id.org/saref#Task
saref:Task rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty saref:isAccomplishedBy ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass saref:Device
] ;
rdfs:comment "The goal for which a device is designed (from a user perspective). For example, a washing machine is designed for the task of washing. We propose here a list of tasks that are relevant for the purpose of SAREF, but this list can be extended."^^xsd:string ;
rdfs:label "Task"^^xsd:string .
### https://w3id.org/saref#Temperature
saref:Temperature rdf:type owl:Class ;
rdfs:subClassOf saref:Property ;
rdfs:comment "A saref:Property related to some measurements that are characterized by a certain value that is measured in a temperature unit (degree_Celsius, degree_Fahrenheit, or degree_kelvin)"^^xsd:string ;
rdfs:label "Temperature"^^xsd:string .
### https://w3id.org/saref#TemperatureSensor
saref:TemperatureSensor rdf:type owl:Class ;
rdfs:subClassOf saref:Sensor ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:consistsOf ;
owl:someValuesFrom saref:Sensor
] ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:hasFunction ;
owl:someValuesFrom saref:SensingFunction
] ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:measuresProperty ;
owl:someValuesFrom saref:Temperature
] ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:accomplishes ;
owl:hasValue saref:Comfort
] ;
rdfs:comment "A device that consists of a sensor, has category saref:Sensor, performs the saref:SensingFunction and is used for the purpose of sensing a property of type saref:Temperature"^^xsd:string ;
rdfs:label "Temperature sensor"^^xsd:string .
### https://w3id.org/saref#TemperatureUnit
saref:TemperatureUnit rdf:type owl:Class ;
rdfs:subClassOf saref:UnitOfMeasure ;
rdfs:comment "The unit of measure for temperature"^^xsd:string ;
rdfs:label "Temperature unit"^^xsd:string .
### https://w3id.org/saref#Time
saref:Time rdf:type owl:Class ;
rdfs:subClassOf saref:Property ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:consistsOf ;
owl:someValuesFrom time:TemporalEntity
] ;
rdfs:comment "A saref:Property that allows to specify the time concept in terms of instants or intervals according to the imported W3C Time ontology."^^xsd:string ;
rdfs:label "Time"^^xsd:string .
### https://w3id.org/saref#ToggleCommand
saref:ToggleCommand rdf:type owl:Class ;
rdfs:subClassOf saref:Command ;
rdfs:comment "A type of command"^^xsd:string ;
rdfs:label "Toggle command"^^xsd:string .
### https://w3id.org/saref#UnitOfMeasure
saref:UnitOfMeasure rdf:type owl:Class ;
rdfs:comment "The unit of measure is a standard for measurement of a quantity, such as a Property. For example, Power is a property and Watt is a unit of power that represents a definite predetermined power: when we say 10 Watt, we actually mean 10 times the definite predetermined power called \"watt\". Our definition is based on the definition of unit of measure in the Ontology of units of Measure (OM). We propose here a list of some units of measure that are relevant for the purpose of SAREF, but this list can be extended, also using some other ontologies rather than the Ontology of units of Measure (OM)."^^xsd:string ;
rdfs:isDefinedBy <http://www.wurvoc.org/vocabularies/om-1.6/Unit_of_measure> ;
rdfs:label "Unit of measure"^^xsd:string .
### https://w3id.org/saref#WashingMachine
saref:WashingMachine rdf:type owl:Class ;
rdfs:subClassOf saref:Appliance ,
saref:Load ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:hasFunction ;
owl:someValuesFrom saref:StartStopFunction
] ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:hasProfile ;
owl:someValuesFrom saref:Profile
] ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:hasState ;
owl:someValuesFrom saref:StartStopState
] ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:accomplishes ;
owl:hasValue saref:Washing
] ;
rdfs:comment "A device of category saref:Appliance and saref:Load that accomplishes the task saref:Washing, performs an actuating function of type saref:StartStopFunction, can be found in the state saref:StartStopState, and can have a saref:Profile that characterizes its energy consumption. "^^xsd:string ;
rdfs:label "Washing machine"^^xsd:string .
### https://w3id.org/saref#Water
saref:Water rdf:type owl:Class ;
rdfs:subClassOf saref:Commodity ;
rdfs:comment "A type of commodity"^^xsd:string ;
rdfs:label "Water"^^xsd:string .
#################################################################
# Individuals
#################################################################
### http://www.wurvoc.org/vocabularies/om-1.8/United_States_dollar
om:United_States_dollar rdf:type owl:NamedIndividual ,
saref:Currency ;
rdfs:label "United States dollar"@en .
### http://www.wurvoc.org/vocabularies/om-1.8/bar
om:bar rdf:type owl:NamedIndividual ,
saref:PressureUnit ;
rdfs:comment "The bar is a unit of pressure defined as 100 000 pascal."@en ;
rdfs:label "bar"^^xsd:string .
### http://www.wurvoc.org/vocabularies/om-1.8/degree_Celsius
om:degree_Celsius rdf:type owl:NamedIndividual ,
saref:TemperatureUnit ;
rdfs:comment "The degree Celsius is a unit of temperature defined as 1 kelvin."@en ;
rdfs:label "degree Celsius"^^xsd:string .
### http://www.wurvoc.org/vocabularies/om-1.8/degree_Fahrenheit
om:degree_Fahrenheit rdf:type owl:NamedIndividual ,
saref:TemperatureUnit ;
rdfs:comment "The degree Fahrenheit is a unit of temperature defined as 5.555556e-1 kelvin."@en ;
rdfs:label "degree Fahrenheit"^^xsd:string .
### http://www.wurvoc.org/vocabularies/om-1.8/euro
om:euro rdf:type owl:NamedIndividual ,
saref:Currency ;
rdfs:label "euro"@en .
### http://www.wurvoc.org/vocabularies/om-1.8/kelvin
om:kelvin rdf:type owl:NamedIndividual ,
saref:TemperatureUnit ;
rdfs:comment "The kelvin is a unit of temperature defined as 1/273.16 of the thermodynamic temperature of the triple point of water."@en ;
rdfs:label "kelvin"^^xsd:string .
### http://www.wurvoc.org/vocabularies/om-1.8/kilowatt
om:kilowatt rdf:type owl:NamedIndividual ,
saref:PowerUnit ;
rdfs:label "kilowatt"^^xsd:string .
### http://www.wurvoc.org/vocabularies/om-1.8/kilowatt_hour
om:kilowatt_hour rdf:type owl:NamedIndividual ,
saref:EnergyUnit ;
rdfs:comment "The kilowatt hour is a unit of energy equal to 1,000 watt-hours, or 3.6 megajoules."^^xsd:string ;
rdfs:label "kilowatt hour"^^xsd:string .
### http://www.wurvoc.org/vocabularies/om-1.8/lux
om:lux rdf:type owl:NamedIndividual ,
saref:IlluminanceUnit ;
rdfs:comment "The lux is a unit of illuminance defined as lumen divided by square metre = candela times steradian divided by square metre."@en ;
rdfs:label "lux"^^xsd:string .
### http://www.wurvoc.org/vocabularies/om-1.8/pascal
om:pascal rdf:type owl:NamedIndividual ,
saref:PressureUnit ;
rdfs:comment "The pascal is a unit of pressure and stress defined as newton divided by square metre = joule divided by cubic metre = kilogram divided by metre second squared."@en ;
rdfs:label "pascal"^^xsd:string .
### http://www.wurvoc.org/vocabularies/om-1.8/pound_sterling
om:pound_sterling rdf:type owl:NamedIndividual ,
saref:Currency ;
rdfs:label "Great Britain pound sterling"^^xsd:string .
### http://www.wurvoc.org/vocabularies/om-1.8/watt
om:watt rdf:type owl:NamedIndividual ,
saref:PowerUnit ;
rdfs:comment "The watt is a unit of power defined as joule divided by second = newton times metre divided by second = volt times ampere = kilogram times square metre divided by second to the power 3."@en ;
rdfs:label "watt"^^xsd:string .
### https://w3id.org/saref#Cleaning
saref:Cleaning rdf:type owl:NamedIndividual ,
saref:Task ;
rdfs:comment "A type of task for which a device is designed"^^xsd:string ;
rdfs:label "Cleaning"^^xsd:string .
### https://w3id.org/saref#Close
saref:Close rdf:type owl:NamedIndividual ,
saref:CloseCommand ,
saref:CloseState ;
rdfs:comment "The value CLOSE. It is used to instantiate different classes such as the CloseCommand class and CloseState class, for example. "^^xsd:string ;
rdfs:label "Close"^^xsd:string .
### https://w3id.org/saref#Comfort
saref:Comfort rdf:type owl:NamedIndividual ,
saref:Task ;
rdfs:comment "A type of task for which a device is designed"^^xsd:string ;
rdfs:label "Comfort"^^xsd:string .
### https://w3id.org/saref#Drying
saref:Drying rdf:type owl:NamedIndividual ,
saref:Task ;
rdfs:comment "A type of task for which a device is designed"^^xsd:string ;
rdfs:label "Drying"^^xsd:string .
### https://w3id.org/saref#EnergyEfficiency
saref:EnergyEfficiency rdf:type owl:NamedIndividual ,
saref:Task ;
rdfs:comment "A type of task for which a device is designed"^^xsd:string ;
rdfs:label "EnergyEfficiency"^^xsd:string .
### https://w3id.org/saref#Entertainment
saref:Entertainment rdf:type owl:NamedIndividual ,
saref:Task ;
rdfs:comment "A type of task for which a device is designed"^^xsd:string ;
rdfs:label "Entertainment"^^xsd:string .
### https://w3id.org/saref#GetCurrentMeterValue
saref:GetCurrentMeterValue rdf:type owl:NamedIndividual ,
saref:GetCurrentMeterValueCommand ;
rdfs:comment "The command GET CURRENT METER VALUE. It is used to instantiate the GetCurrentMeterValueCommand class. "^^xsd:string ;
rdfs:label "Get current meter value"^^xsd:string .
### https://w3id.org/saref#GetMeterData
saref:GetMeterData rdf:type owl:NamedIndividual ,
saref:GetMeterDataCommand ;
rdfs:comment "The command GET METER DATA. It is used to instantiate the GetMeterDataCommand class. "^^xsd:string ;
rdfs:label "Get meter data"^^xsd:string .
### https://w3id.org/saref#GetMeterHistory
saref:GetMeterHistory rdf:type owl:NamedIndividual ,
saref:GetMeterHistoryCommand ;
rdfs:comment "The command GET METER HISTORY. It is used to instantiate the GetMeterHistoryCommand class. "^^xsd:string ;
rdfs:label "Get meter history"^^xsd:string .
### https://w3id.org/saref#GetSensingData
saref:GetSensingData rdf:type owl:NamedIndividual ,
saref:GetSensingDataCommand ;
rdfs:comment "The command GET SENSING DATA. It is used to instantiate the GetSensingDataCommand class. "^^xsd:string ;
rdfs:label "Get sensing data"^^xsd:string .
### https://w3id.org/saref#Lighting
saref:Lighting rdf:type owl:NamedIndividual ,
saref:Task ;
rdfs:comment "A type of task for which a device is designed"^^xsd:string ;
rdfs:label "Lighting"^^xsd:string .
### https://w3id.org/saref#MeterReading
saref:MeterReading rdf:type owl:NamedIndividual ,
saref:Task ;
rdfs:comment "A type of task for which a device is designed"^^xsd:string ;
rdfs:label "Meter reading"^^xsd:string .
### https://w3id.org/saref#Notify
saref:Notify rdf:type owl:NamedIndividual ,
saref:NotifyCommand ;
rdfs:comment "The value NOTIFY. It is used to instantiate the NotifyCommand."^^xsd:string ;
rdfs:label "Notify"^^xsd:string .
### https://w3id.org/saref#Off
saref:Off rdf:type owl:NamedIndividual ,
saref:OffCommand ,
saref:OffState ;
rdfs:comment "The value OFF. It is used to instantiate different classes such as the OffCommand class and OffState class. "^^xsd:string ;
rdfs:label "Off "^^xsd:string .
### https://w3id.org/saref#On
saref:On rdf:type owl:NamedIndividual ,
saref:OnCommand ,
saref:OnState ;
rdfs:comment "The value ON. It is used to instantiate different classes such as the OnCommand class and OnState class. "^^xsd:string ;
rdfs:label "On"^^xsd:string .
### https://w3id.org/saref#Open
saref:Open rdf:type owl:NamedIndividual ,
saref:OpenCommand ,
saref:OpenState ;
rdfs:comment "The value OPEN. It is used to instantiate different classes such as the OpenCommand class and OpenState class. "^^xsd:string ;
rdfs:label "Open"^^xsd:string .
### https://w3id.org/saref#Pause
saref:Pause rdf:type owl:NamedIndividual ,
saref:PauseCommand ;
rdfs:comment "The value PAUSE. It is used to instantiate classes such as the PauseCommand class."^^xsd:string ;
rdfs:label "Pause"^^xsd:string .
### https://w3id.org/saref#Safety
saref:Safety rdf:type owl:NamedIndividual ,
saref:Task ;
rdfs:comment "A type of task for which a device is designed"^^xsd:string ;
rdfs:label "Safety"^^xsd:string .
### https://w3id.org/saref#SetAbsoluteLevel
saref:SetAbsoluteLevel rdf:type owl:NamedIndividual ,
saref:SetAbsoluteLevelCommand ;
rdfs:comment "The value SET ABSOLUTE LEVEL. It is used to instantiate classes such as the SetAbsoluteLevelCommand class. "^^xsd:string ;
rdfs:label "Set absolute level"^^xsd:string .
### https://w3id.org/saref#SetRelativeLevel
saref:SetRelativeLevel rdf:type owl:NamedIndividual ,
saref:SetRelativeLevelCommand ;
rdfs:comment "The value SET RELATIVE LEVEL. It is used to instantiate classes such as the SetRelativeLevelCommand class. "^^xsd:string ;
rdfs:label "Set relative level"^^xsd:string .
### https://w3id.org/saref#Start
saref:Start rdf:type owl:NamedIndividual ,
saref:StartCommand ,
saref:StartState ;
rdfs:comment "The value START. It is used to instantiate different classes such as the StartCommand class and StartState class. "^^xsd:string ;
rdfs:label "Start"^^xsd:string .
### https://w3id.org/saref#StepDown
saref:StepDown rdf:type owl:NamedIndividual ,
saref:StepDownCommand ;
rdfs:comment "The value STEP DOWN. It is used to instantiate the StepDownCommand class. "^^xsd:string ;
rdfs:label "Step down"^^xsd:string .
### https://w3id.org/saref#StepUp
saref:StepUp rdf:type owl:NamedIndividual ,
saref:StepUpCommand ;
rdfs:comment "The value STEP UP. It is used to instantiate the StepUpCommand class. "^^xsd:string ;
rdfs:label "Step up"^^xsd:string .
### https://w3id.org/saref#Stop
saref:Stop rdf:type owl:NamedIndividual ,
saref:StopCommand ,
saref:StopState ;
rdfs:comment "The value STOP. It is used to instantiate different classes such as the StopCommand class and StopState class. "^^xsd:string ;
rdfs:label "Stop"^^xsd:string .
### https://w3id.org/saref#Toggle
saref:Toggle rdf:type owl:NamedIndividual ,
saref:ToggleCommand ;
rdfs:comment "The value TOGGLE. It is used to instantiate the the ToggleCommand class"^^xsd:string ;
rdfs:label "Toggle"^^xsd:string .
### https://w3id.org/saref#Washing
saref:Washing rdf:type owl:NamedIndividual ,
saref:Task ;
rdfs:comment "A type of task for which a device is designed"^^xsd:string ;
rdfs:label "Washing"^^xsd:string .
### https://w3id.org/saref#WellBeing
saref:WellBeing rdf:type owl:NamedIndividual ,
saref:Task ;
rdfs:comment "A type of task for which a device is designed"^^xsd:string ;
rdfs:label "WellBeing"^^xsd:string .
### https://w3id.org/saref#watt_hour
saref:watt_hour rdf:type owl:NamedIndividual ,
saref:EnergyUnit ;
rdfs:comment "The Watt Hor is a unit of energy equivalent to one watt (1 W) of power expended for one hour (1 h) of time. An energy expenditure of 1 Wh represents 3600 joules "^^xsd:string ;
rdfs:label "watt hour"^^xsd:string .
### Generated by the OWL API (version 4.2.6.20160910-2108) https://github.com/owlcs/owlapi