Skip to content
Snippets Groups Projects
saref.ttl 85.7 KiB
Newer Older
Maxime Lefrançois's avatar
Maxime Lefrançois committed
                                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
                                  ] ;
                  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. A saref:SmokeSensor is typically used to saref:accomplish saref:Safety."^^xsd:string ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
                  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
                                        ] ;
                        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. A saref:TemperatureSensor is typically used to saref:accomplish saref:Comfort."^^xsd:string ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
                        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
                                     ] ;
                     rdfs:comment "A device of category saref:Appliance and saref:Load that 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. A saref:WashingMachine is typically used to saref:accomplish saref:Washing. "^^xsd:string ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
                     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
###  https://saref.etsi.org/Close
Maxime Lefrançois's avatar
Maxime Lefrançois committed
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 .


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 .


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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