http://purl.org/goodrelations/v1#hasValueInteger
This subproperty specifies that the upper and lower limit of the given gr:QuantitativeValueInteger are identical and have the respective integer value. It is a shortcut for such cases where a quantitative property is (at least practically) a single point value and not an interval.
DOMAIN | PROPERTY | RANGE |
---|---|---|
gr:QuantitativeValueInteger | gr:hasValueInteger | xsd:int |
@prefix gr: <http://purl.org/goodrelations/v1#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
gr:hasValueInteger a owl:DatatypeProperty ;
rdfs:label "has value integer (0..1)"@en ;
rdfs:comment "This subproperty specifies that the upper and lower limit of the given gr:QuantitativeValueInteger are identical and have the respective integer value. It is a shortcut for such cases where a quantitative property is (at least practically) a single point value and not an interval."@en ;
rdfs:domain gr:QuantitativeValueInteger ;
rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
rdfs:range xsd:int ;
rdfs:subPropertyOf gr:hasMaxValueInteger,
gr:hasMinValueInteger .