gr:includesObject leaf node


URI

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

Label

includes object (0..*)

Description

This object property links a gr:Offering to one or multiple gr:TypeAndQuantityNode or nodes that specify the components that are included in the respective offer.

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) gr:includesObject gr:TypeAndQuantityNode

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:includesObject a owl:ObjectProperty ;
    rdfs:label "includes object (0..*)"@en ;
    rdfs:comment "This object property links a gr:Offering to one or multiple gr:TypeAndQuantityNode or nodes that specify the components that are included in the respective offer."@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( gr:Offering <http://schema.org/Offer> ) ] ;
    rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
    rdfs:range gr:TypeAndQuantityNode .