gr:hasValueFloat leaf node


URI

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

Label

has value float (0..1)

Description

This subproperty specifies that the upper and lower limit of the given gr:QuantitativeValueFloat are identical and have the respective float 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:QuantitativeValueFloat gr:hasValueFloat xsd:float

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#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

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