gr:lesser leaf node


URI

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

Label

lesser (0..*)

Description

This ordering relation for gr:QualitativeValue pairs indicates that the subject is lesser than the object.

Usage

DOMAINPROPERTYRANGE
gr:QualitativeValue gr:lesser gr:QualitativeValue

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:lesser a owl:ObjectProperty,
        owl:TransitiveProperty ;
    rdfs:label "lesser (0..*)"@en ;
    rdfs:comment "This ordering relation for gr:QualitativeValue pairs indicates that the subject is lesser than the object."@en ;
    rdfs:domain gr:QualitativeValue ;
    rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
    rdfs:range gr:QualitativeValue ;
    owl:inverseOf gr:greater .