gr:hasPriceSpecification leaf node


URI

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

Label

has price specification (0..*)

Description

This links a gr:Offering to a gr:PriceSpecification or specifications. There can be unit price specifications, payment charge specifications, and delivery charge specifications. For each type, multiple specifications for the same gr:Offering are possible, e.g. for different quantity ranges or for different currencies, or for different combinations of gr:DeliveryMethod and target destinations.

Recommended retail prices etc. can be marked by the gr:priceType property of the gr:UnitPriceSpecification.

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) gr:hasPriceSpecification gr:PriceSpecification

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:hasPriceSpecification a owl:ObjectProperty ;
    rdfs:label "has price specification (0..*)"@en ;
    rdfs:comment """This links a gr:Offering to a gr:PriceSpecification or specifications. There can be unit price specifications, payment charge specifications, and delivery charge specifications. For each type, multiple specifications for the same gr:Offering are possible, e.g. for different quantity ranges or for different currencies, or for different combinations of gr:DeliveryMethod and target destinations.

Recommended retail prices etc. can be marked by the gr:priceType property of the gr:UnitPriceSpecification."""@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( gr:Offering <http://schema.org/Offer> ) ] ;
    rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
    rdfs:range gr:PriceSpecification .