http://purl.org/goodrelations/v1#isVariantOf
This states that a particular gr:ProductOrServiceModel is a variant of another product or service model. It is pretty safe to infer that the variant inherits all gr:quantitativeProductOrServiceProperty, gr:qualitativeProductOrServiceProperty, and gr:datatypeProductOrServiceProperty values that are defined for the first gr:ProductOrServiceModel.
Example:
foo:Red_Ford_T_Model gr:isVariantOf foo:Ford_T_Model
DOMAIN | PROPERTY | RANGE |
---|---|---|
gr:ProductOrServiceModel | gr:isVariantOf | 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:isVariantOf a owl:ObjectProperty ;
rdfs:label "is variant of (0..1)"@en ;
rdfs:comment """This states that a particular gr:ProductOrServiceModel is a variant of another product or service model. It is pretty safe to infer that the variant inherits all gr:quantitativeProductOrServiceProperty, gr:qualitativeProductOrServiceProperty, and gr:datatypeProductOrServiceProperty values that are defined for the first gr:ProductOrServiceModel.
Example:
foo:Red_Ford_T_Model gr:isVariantOf foo:Ford_T_Model"""@en ;
rdfs:domain gr:ProductOrServiceModel ;
rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
rdfs:range gr:ProductOrServiceModel .