gr:isSimilarTo leaf node


URI

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

Label

is similar to (0..*)

Description

This states that a given gr:ProductOrService is similar to another product or service. Of course, this is a subjective statement; when interpreting it, the trust in the origin of the statement should be taken into account.

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) gr:isSimilarTo gr:ProductOrService

Implementation

@prefix gr: <http://purl.org/goodrelations/v1#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

gr:isSimilarTo a owl:ObjectProperty ;
    rdfs:label "is similar to (0..*)"@en ;
    rdfs:comment "This states that a given gr:ProductOrService is similar to another product or service. Of course, this is a subjective statement; when interpreting it, the trust in the origin of the statement should be taken into account."@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( gr:ProductOrService <http://schema.org/Product> ) ] ;
    rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
    rdfs:range gr:ProductOrService .