gr:hasMakeAndModel leaf node


URI

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

Label

has make and model (0..1)

Description

This states that an actual product instance (gr:Individual) or a placeholder instance for multiple, unidentified such instances (gr:SomeItems) is one occurence of a particular gr:ProductOrServiceModel.

Example: myFordT hasMakeAndModel FordT.

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) gr:hasMakeAndModel gr:ProductOrServiceModel

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:hasMakeAndModel a owl:ObjectProperty ;
    rdfs:label "has make and model (0..1)"@en ;
    rdfs:comment """This states that an actual product instance (gr:Individual) or a placeholder instance for multiple, unidentified such instances (gr:SomeItems) is one occurence of a particular gr:ProductOrServiceModel.

Example: myFordT hasMakeAndModel FordT."""@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( gr:Individual gr:SomeItems <http://schema.org/Product> ) ] ;
    rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
    rdfs:range gr:ProductOrServiceModel .