gr:hasMinValue


URI

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

Label

has min value (0..1)

Description

This property captures the lower limit of a gr:QuantitativeValue instance.

Usage

DOMAINPROPERTYRANGE
gr:QuantitativeValue gr:hasMinValue 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:hasMinValue a owl:DatatypeProperty ;
    rdfs:label "has min value (0..1)"@en ;
    rdfs:comment "This property captures the lower limit of a gr:QuantitativeValue instance."@en ;
    rdfs:domain gr:QuantitativeValue ;
    rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
    rdfs:range rdfs:Literal .