saref4agri.ttl 47.9 KB
Newer Older
Maxime Lefrançois's avatar
Maxime Lefrançois committed
    [ rdf:type owl:Restriction ;
      owl:onProperty saref:hasDescription ;
      owl:maxCardinality "1"^^xsd:nonNegativeInteger
    ] ;
  rdfs:comment "A directive that a device must support to perform a certain function. A command may act upon a state, but does not necessarily act upon a state. For example, the ON command acts upon the ON/OFF state, but the GET command does not act upon any state, it simply gives a directive to retrieve a certain value. We propose here a list of commands that are relevant for the purpose of SAREF, but this list can be extended."@en ;
  rdfs:label "Command"@en .
###  https://saref.etsi.org/core/Device
saref:Device rdf:type owl:Class ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
  rdfs:subClassOf ssn:System ;
  rdfs:isDefinedBy <https://saref.etsi.org/core/> ;
  rdfs:label "Device"@en .
###  https://saref.etsi.org/core/FeatureOfInterest
saref:FeatureOfInterest rdf:type owl:Class ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
  rdfs:subClassOf [ rdf:type owl:Restriction ;
      owl:onProperty saref:hasProperty ;
      owl:allValuesFrom saref:Property
    ] ,
    [ rdf:type owl:Restriction ;
      owl:onProperty saref:hasMeasurement ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
      owl:allValuesFrom saref:Measurement
    ] ;
  rdfs:comment <https://saref.etsi.org/core/> ;
  rdfs:label "Feature of interest"@en .
###  https://saref.etsi.org/core/Function
saref:Function rdf:type owl:Class ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
  rdfs:subClassOf [ rdf:type owl:Restriction ;
      owl:onProperty saref:hasCommand ;
      owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
      owl:onClass saref:Command
    ] ;
  rdfs:comment "The functionality necessary to accomplish the task for which a Device is designed. A device can be designed to perform more than one function. Functions can be structured in categories (subclasses) that reflect different points of view, for example, considering the specific application area for which a function can be used (e.g., light, temperature, motion, heat, power, etc.), or the capability that a function can support (e.g., receive, reply, notify, etc.), and so forth. "@en ;
  rdfs:label "Function"@en .
###  https://saref.etsi.org/core/Humidity
saref:Humidity rdf:type owl:Class ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
  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 humidity unit"@en ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
  rdfs:label "Humidiy"@en ,
       "Humidity"@en .
###  https://saref.etsi.org/core/Measurement
saref:Measurement rdf:type owl:Class ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
  rdfs:subClassOf [ rdf:type owl:Restriction ;
      owl:onProperty saref:isMeasurementOf ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
      owl:allValuesFrom saref:FeatureOfInterest
    ] ,
    [ rdf:type owl:Restriction ;
      owl:onProperty saref:isMeasuredIn ;
      owl:allValuesFrom saref:UnitOfMeasure
    ] ,
    [ rdf:type owl:Restriction ;
      owl:onProperty saref:relatesToProperty ;
      owl:allValuesFrom saref:Property
    ] ,
    [ rdf:type owl:Restriction ;
      owl:onProperty saref:isMeasuredIn ;
      owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
      owl:onClass saref:UnitOfMeasure
    ] ,
    [ rdf:type owl:Restriction ;
      owl:onProperty saref:relatesToProperty ;
      owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
      owl:onClass saref:Property
    ] ,
    [ rdf:type owl:Restriction ;
      owl:onProperty saref:hasTimestamp ;
      owl:allValuesFrom xsd:dateTime
    ] ,
    [ rdf:type owl:Restriction ;
      owl:onProperty saref:hasValue ;
      owl:cardinality "1"^^xsd:nonNegativeInteger
    ] ,
    [ rdf:type owl:Restriction ;
      owl:onProperty saref:hasValue ;
      owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
      owl:onDataRange xsd:float
    ] ;
      owl:disjointWith saref:Property ,
        saref:UnitOfMeasure ;
  rdfs:comment "Represents the measured value made over a property. It is also linked to the unit of measure in which the value is expressed and the timestamp of the measurement."@en ;
  rdfs:isDefinedBy <https://saref.etsi.org/core/> ;
  rdfs:label "Measurement"@en .
###  https://saref.etsi.org/core/Property
saref:Property rdf:type owl:Class ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
  rdfs:subClassOf [ rdf:type owl:Restriction ;
      owl:onProperty saref:isControlledByDevice ;
      owl:allValuesFrom saref:Device
    ] ,
    [ rdf:type owl:Restriction ;
      owl:onProperty saref:isMeasuredByDevice ;
      owl:allValuesFrom saref:Device
    ] ,
    [ rdf:type owl:Restriction ;
      owl:onProperty saref:isPropertyOf ;
      owl:allValuesFrom saref:FeatureOfInterest
    ] ,
    [ rdf:type owl:Restriction ;
      owl:onProperty saref:relatesToMeasurement ;
      owl:allValuesFrom saref:Measurement
    ] ;
      owl:disjointWith saref:UnitOfMeasure ;
  rdfs:comment "An aspect of an entity that can be observable by a sensor."@en ,
 "Anything that can be sensed, measured or controlled in households, common public buildings or offices. We propose here a list of properties that are relevant for the purpose of SAREF, but this list can be extended."@en ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
  rdfs:isDefinedBy <https://saref.etsi.org/core/> ;
  rdfs:label "Property"@en ,
       "Property"@en .
###  https://saref.etsi.org/core/Sensor
saref:Sensor rdf:type owl:Class ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
  rdfs:subClassOf saref:Device ;
  rdfs:isDefinedBy <https://saref.etsi.org/core/> ;
  rdfs:label "Sensor"@en .
###  https://saref.etsi.org/core/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."@en ;
  rdfs:label "State"@en .
###  https://saref.etsi.org/core/Task
saref:Task rdf:type owl:Class ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
  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."@en ;
  rdfs:label "Task"@en .
###  https://saref.etsi.org/core/Temperature
saref:Temperature rdf:type owl:Class ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
  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)"@en ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
  rdfs:label "Temperature"@en ,
  "Temperature"@en .
###  https://saref.etsi.org/core/Time
saref:Time rdf:type owl:Class ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
  rdfs:subClassOf saref:Property ;
  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."@en ;
  rdfs:label "Time"@en .
###  https://saref.etsi.org/core/UnitOfMeasure
saref:UnitOfMeasure rdf:type owl:Class ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
  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 the Smart Appliances ontology, but this list can be extended."@en ,
      "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)."@en ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
  rdfs:isDefinedBy <http://www.wurvoc.org/vocabularies/om-1.6/Unit_of_measure> ,
          <https://saref.etsi.org/core/> ;
  rdfs:label "Unit of measure"@en .


#################################################################
#    Individuals
#################################################################

###  http://dbpedia.org/resource/DBM
<http://dbpedia.org/resource/DBM> rdf:type owl:NamedIndividual ,
Maxime Lefrançois's avatar
Maxime Lefrançois committed
     saref:UnitOfMeasure ;
  rdfs:label "decibel-milliwatts"@en .


###  http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius
<http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius> rdf:type owl:NamedIndividual ,
Maxime Lefrançois's avatar
Maxime Lefrançois committed
                                     saref:UnitOfMeasure ;
  rdfs:label "degree Celsius"@en .


###  http://www.ontology-of-units-of-measure.org/resource/om-2/millibar
<http://www.ontology-of-units-of-measure.org/resource/om-2/millibar> rdf:type owl:NamedIndividual ,
Maxime Lefrançois's avatar
Maxime Lefrançois committed
                                saref:UnitOfMeasure ;
  rdfs:label "millibar"@en .


###  http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre
<http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre> rdf:type owl:NamedIndividual ,
Maxime Lefrançois's avatar
Maxime Lefrançois committed
                                  saref:UnitOfMeasure ;
  rdfs:label "millimetre"@en .


###  http://www.ontology-of-units-of-measure.org/resource/om-2/millivolt
<http://www.ontology-of-units-of-measure.org/resource/om-2/millivolt> rdf:type owl:NamedIndividual ,
Maxime Lefrançois's avatar
Maxime Lefrançois committed
                                 saref:UnitOfMeasure ;
  rdfs:label "millivolt"@en .


###  https://saref.etsi.org/saref4agri/AirTemperature
s4agri:AirTemperature rdf:type owl:NamedIndividual ,
                         saref:Temperature ;
  rdfs:comment "The degree or intensity of heat present in the air."@en ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
  rdfs:label "Air temperature"@en .


###  https://saref.etsi.org/saref4agri/AmbientHumidity
s4agri:AmbientHumidity rdf:type owl:NamedIndividual ,
                          saref:Humidity ;
  rdfs:comment "The amount of water vapour in the air."@en ;
  rdfs:label "Ambient humidity"@en .


###  https://saref.etsi.org/saref4agri/IrrigationWater
s4agri:IrrigationWater rdf:type owl:NamedIndividual ,
                          saref:Property ;
  rdfs:comment "The amount of water falling in the soil by irrigation methods."@en ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
  rdfs:label "Irrigation water"@en .


###  https://saref.etsi.org/saref4agri/PlantGrowthStage
s4agri:PlantGrowthStage rdf:type owl:NamedIndividual ,
                           saref:Property ;
  rdfs:comment "The level or stage of growth of the plant."@en ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
  rdfs:label "Plant growth stage"@en .


###  https://saref.etsi.org/saref4agri/Precipitation
s4agri:Precipitation rdf:type owl:NamedIndividual ,
                        saref:Property ;
  rdfs:comment "The amount of water falling in the soil by natural process (e.g. rain)."@en ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
  rdfs:label "Precipitation"@en .


###  https://saref.etsi.org/saref4agri/SoilMoisture
s4agri:SoilMoisture rdf:type owl:NamedIndividual ,
                       saref:Property ;
  rdfs:comment "The amount of water or humidity contained in the soil."@en ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
  rdfs:label "Soil moisture"@en .


###  https://saref.etsi.org/saref4agri/SoilTemperature
s4agri:SoilTemperature rdf:type owl:NamedIndividual ,
                          saref:Temperature ;
  rdfs:comment "The degree or intensity of heat present in the soil."@en ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
  rdfs:label "Soil temperature"@en .
Maxime Lefrançois's avatar
Maxime Lefrançois committed
s4agri:Intake a owl:Class ;
  rdfs:comment "The amount of food or other substance taken into the body of an animal or into the soil."@en ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
  rdfs:label "Intake"@en .
Maxime Lefrançois's avatar
Maxime Lefrançois committed
s4agri:Yield a owl:Class ;
  rdfs:comment "The produced amount of food for animals or of agricultural products."@en ;
Maxime Lefrançois's avatar
Maxime Lefrançois committed
  rdfs:label "Yield"@en .