gr:predecessorOf leaf node


URI

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

Label

predecessor of (0..*)

Description

This property indicates that the subject is a previous, often discontinued variant of the gr:ProductOrServiceModel used as the object.

Example: Golf III predecessorOf Golf IV

This relation is transitive.

Usage

DOMAINPROPERTYRANGE
gr:ProductOrServiceModel gr:predecessorOf 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:predecessorOf a owl:ObjectProperty,
        owl:TransitiveProperty ;
    rdfs:label "predecessor of (0..*)"@en ;
    rdfs:comment """This property indicates that the subject is a previous, often discontinued variant of the gr:ProductOrServiceModel used as the object.

Example: Golf III predecessorOf Golf IV

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