gr:typeOfGood leaf node


URI

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

Label

type of good (1..1)

Description

This specifies the gr:ProductOrService that the gr:TypeAndQuantityNode is referring to.

Usage

DOMAINPROPERTYRANGE
gr:TypeAndQuantityNode , Blank node (see implementation) gr:typeOfGood owl:Thing (inferred)

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:typeOfGood a owl:ObjectProperty ;
    rdfs:label "type of good (1..1)"@en ;
    rdfs:comment "This specifies the gr:ProductOrService that the gr:TypeAndQuantityNode is referring to."@en ;
    rdfs:domain gr:TypeAndQuantityNode ;
    rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
    rdfs:range [ a owl:Class ;
            owl:unionOf ( gr:Individual gr:SomeItems ) ] .