http://purl.org/goodrelations/v1#predecessorOf
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.
DOMAIN | PROPERTY | RANGE |
---|---|---|
gr:ProductOrServiceModel | gr:predecessorOf | gr:ProductOrServiceModel |
@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 .