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