gr:successorOf leaf node


URI

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

Label

successor of (0..*)

Description

This property indicates that the subject is a newer, often updated or improved variant of the gr:ProductOrServiceModel used as the object.

Example: Golf III successorOf Golf II

This relation is transitive.

Usage

DOMAINPROPERTYRANGE
gr:ProductOrServiceModel gr:successorOf gr:ProductOrServiceModel

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:successorOf a owl:ObjectProperty,
        owl:TransitiveProperty ;
    rdfs:label "successor of (0..*)"@en ;
    rdfs:comment """This property indicates that the subject is a newer, often updated or improved variant of the gr:ProductOrServiceModel used as the object.

Example: Golf III successorOf Golf II

This relation is transitive."""@en ;
    rdfs:domain gr:ProductOrServiceModel ;
    rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
    rdfs:range gr:ProductOrServiceModel ;
    owl:inverseOf gr:predecessorOf .