Skip to content
Snippets Groups Projects
saref.ttl 82.2 KiB
Newer Older
Maxime Lefrançois's avatar
Maxime Lefrançois committed
                                        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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/Sensor
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/Service
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/SetAbsoluteLevelCommand
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/SetLevelCommand
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/SetRelativeLevelCommand
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/Smoke
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/SmokeSensor
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/StartCommand
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/StartState
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/StartStopFunction
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/StartStopState
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/State
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/StepDownCommand
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/StepUpCommand
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/StopCommand
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/StopState
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/Storage
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/Switch
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/SwitchOnService
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/Task
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/Temperature
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/TemperatureSensor
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/TemperatureUnit
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/Time
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/ToggleCommand
Maxime Lefrançois's avatar
Maxime Lefrançois committed
saref:ToggleCommand rdf:type owl:Class ;
                    rdfs:subClassOf saref:Command ;
                    rdfs:comment "A type of command"^^xsd:string ;
                    rdfs:label "Toggle command"^^xsd:string .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/UnitOfMeasure
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/WashingMachine
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/Water
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/Cleaning
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .
Maxime Lefrançois's avatar
Maxime Lefrançois committed

Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/Comfort
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/Drying
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/EnergyEfficiency
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/Entertainment
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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#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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/MeterReading
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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#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#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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/WellBeing
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


Maxime Lefrançois's avatar
Maxime Lefrançois committed
###  https://saref.etsi.org/watt_hour
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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