gr:isAccessoryOrSparePartFor leaf node


URI

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

Label

is accessory or spare part for (0..*)

Description

This states that a particular gr:ProductOrService is an accessory or spare part for another product or service.

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) gr:isAccessoryOrSparePartFor gr:ProductOrService

Implementation

@prefix gr: <http://purl.org/goodrelations/v1#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

gr:isAccessoryOrSparePartFor a owl:ObjectProperty ;
    rdfs:label "is accessory or spare part for (0..*)"@en ;
    rdfs:comment "This states that a particular gr:ProductOrService is an accessory or spare part for another product or service."@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( gr:ProductOrService <http://schema.org/Product> ) ] ;
    rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
    rdfs:range gr:ProductOrService .