Commit d8b256df authored by Raul Garcia-Castro's avatar Raul Garcia-Castro
Browse files

Added the rest of properties and restrictions, and fixed the definition of property.

parent 85aa5b50
Loading
Loading
Loading
Loading
+23 −1
Original line number Diff line number Diff line
@@ -64,6 +64,13 @@ saref:hasCommand rdf:type owl:ObjectProperty ;
                 rdfs:label "has command"@en .


###  https://saref.etsi.org/hasFeatureOfInterest
saref:hasFeatureOfInterest rdf:type owl:ObjectProperty ;
                           owl:inverseOf saref:isFeatureOfInterestOf ;
                           rdfs:comment "A relationship between a measurement and the entity whose quality was measured"@en ;
                           rdfs:label "has feature of interest"@en .


###  https://saref.etsi.org/hasFunction
saref:hasFunction rdf:type owl:ObjectProperty ;
                  rdfs:comment "A relationship identifying the function of a device"@en ;
@@ -96,6 +103,7 @@ saref:hasProfile rdf:type owl:ObjectProperty ;

###  https://saref.etsi.org/hasProperty
saref:hasProperty rdf:type owl:ObjectProperty ;
                  owl:inverseOf saref:isPropertyOf ;
                  rdfs:comment "A relationship between an entity and a property of that entity"@en ;
                  rdfs:label "has property"@en .

@@ -184,6 +192,12 @@ saref:isOfferedBy rdf:type owl:ObjectProperty ;
                  rdfs:label "is offered by"@en .


###  https://saref.etsi.org/isPropertyOf
saref:isPropertyOf rdf:type owl:ObjectProperty ;
                   rdfs:comment "A relationship between a property and the entity it belongs to"@en ;
                   rdfs:label "is property of"@en .


###  https://saref.etsi.org/isUsedFor
saref:isUsedFor rdf:type owl:ObjectProperty ;
                rdfs:comment "A relationship specifying the commodity for which a device is used for"@en ;
@@ -664,6 +678,10 @@ saref:Load rdf:type owl:Class ;
###  https://saref.etsi.org/Measurement
saref:Measurement rdf:type owl:Class ;
                  rdfs:subClassOf [ rdf:type owl:Restriction ;
                                    owl:onProperty saref:hasFeatureOfInterest ;
                                    owl:allValuesFrom saref:FeatureOfInterest
                                  ] ,
                                  [ rdf:type owl:Restriction ;
                                    owl:onProperty saref:isMeasuredIn ;
                                    owl:allValuesFrom saref:UnitOfMeasure
                                  ] ,
@@ -949,11 +967,15 @@ saref:Property rdf:type owl:Class ;
                                 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
                               ] ;
               rdfs:comment "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 ;
               rdfs:comment "A quality of an entity that can be measured; an aspect of an entity that is intrinsic to and cannot exist without the entity"@en ;
               rdfs:label "Property"@en .