gr:hasMinValueInteger


URI

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

Label

has min value integer (1..1)

Description

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

Inherits from

Sub Property

Usage

DOMAINPROPERTYRANGE
gr:QuantitativeValueInteger gr:hasMinValueInteger xsd:int

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