gr:hasValue leaf node


URI

http://purl.org/goodrelations/v1#hasValue

Label

has value (0..1)

Description

This subproperty specifies that the upper and lower limit of the given gr:QuantitativeValue are identical and have the respective value. It is a shortcut for such cases where a quantitative property is (at least practically) a single point value and not an interval.

Usage

DOMAINPROPERTYRANGE
gr:QuantitativeValue gr:hasValue rdfs:Literal

Implementation

@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#> .

gr:hasValue a owl:DatatypeProperty ;
    rdfs:label "has value (0..1)"@en ;
    rdfs:comment "This subproperty specifies that the upper and lower limit of the given gr:QuantitativeValue are identical and have the respective 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:QuantitativeValue ;
    rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
    rdfs:range rdfs:Literal ;
    rdfs:subPropertyOf gr:hasMaxValue,
        gr:hasMinValue .