gr:hasEligibleQuantity leaf node


URI

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

Label

has eligible quantity (0..1)

Description

This specifies the interval and unit of measurement of ordering quantities for which the gr:Offering or gr:PriceSpecification is valid. This allows e.g. specifying that a certain freight charge is valid only for a certain quantity.
Note that if an offering is a bundle, i.e. it consists of more than one unit of a single type of good, or if the unit of measurement for the good is different from unit (Common Code C62), then gr:hasEligibleQuantity refers to units of this bundle. In other words, "C62" for "Units or pieces" is usually the appropriate unit of measurement.

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) gr:hasEligibleQuantity gr:QuantitativeValue

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:hasEligibleQuantity a owl:ObjectProperty ;
    rdfs:label "has eligible quantity (0..1)"@en ;
    rdfs:comment """This specifies the interval and unit of measurement of ordering quantities for which the gr:Offering or gr:PriceSpecification is valid. This allows e.g. specifying that a certain freight charge is valid only for a certain quantity.
Note that if an offering is a bundle, i.e. it consists of more than one unit of a single type of good, or if the unit of measurement for the good is different from unit (Common Code C62), then gr:hasEligibleQuantity refers to units of this bundle. In other words, "C62" for "Units or pieces" is usually the appropriate unit of measurement."""@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( gr:Offering gr:PriceSpecification <http://schema.org/Offer> ) ] ;
    rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
    rdfs:range gr:QuantitativeValue .