gr:equal leaf node


URI

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

Label

equal (0..*)

Description

This ordering relation for qualitative values indicates that the subject is equal to the object.

Usage

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