Commit 219b3be3 authored by María's avatar María
Browse files

added saref:FeatureOfInterest and saref:measurementMadeBy

parent b3e2e68f
Loading
Loading
Loading
Loading
+19 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@
                          dcterms:title "SAREF: the Smart Applications REFerence ontology"@en ;
                          dcterms:license <http://purl.org/NET/rdflicense/cc-by4.0> ;
                          dcterms:contributor <https://www.linkedin.com/in/lauradaniele> ;
                          dcterms:contributor <http://purl.org/net/mpoveda> ;
                          dcterms:contributor <https://w3id.org/people/mpoveda/> ;
                          dcterms:contributor <http://www.garcia-castro.com/foaf.rdf#me> ;
                          dcterms:contributor <http://maxime-lefrancois.info/me#> ;
                          vann:preferredNamespacePrefix "saref" ;
@@ -181,9 +181,15 @@ saref:isUsedFor rdf:type owl:ObjectProperty ;

###  https://saref.etsi.org/makesMeasurement
saref:makesMeasurement rdf:type owl:ObjectProperty ;
                       owl:inverseOf saref:measurementMadeBy ;
                       rdfs:comment "A relation between a device and the measurements it makes. Such measurement will link together the value of the measurement, its unit of measure and the property to which it relates."@en ;
                       rdfs:label "makes measurement"@en .

###  https://saref.etsi.org/measurementMadeBy
saref:measurementMadeBy a owl:ObjectProperty ;
                       rdfs:comment "A relation between a measurement and the device that made it."@en ;
                       rdfs:label "measurement made by"@en .


###  https://saref.etsi.org/measuresProperty
saref:measuresProperty rdf:type owl:ObjectProperty ;
@@ -475,6 +481,18 @@ saref:EventFunction rdf:type owl:Class ;
                    rdfs:label "Event function"@en .


###  https://w3id.org/saref#FeatureOfInterest
saref:FeatureOfInterest a owl:Class ;
  rdfs:subClassOf [ a owl:Restriction ;
            owl:onProperty saref:hasProperty ;
            owl:allValuesFrom saref:Property ] ,

          [ a owl:Restriction ;
            owl:onProperty saref:isFeatureOfInterestOf ;
            owl:allValuesFrom saref:Measurement ] ;
               rdfs:comment "A feature of interest represent any real world from which a property is observed or measured."@en ;
               rdfs:label "Feature of interest"@en .

###  https://saref.etsi.org/Function
saref:Function rdf:type owl:Class ;
               rdfs:subClassOf [ rdf:type owl:Restriction ;