http://purl.org/goodrelations/v1#deliveryLeadTime
This property can be used to indicate the promised delay between the receipt of the order and the goods leaving the warehouse.
The duration is specified by attaching an instance of gr:QuantitativeValueInteger. The lower and upper boundaries are specified using the properties gr:hasMinValueInteger and gr:hasMaxValueInteger to that instance. A point value can be modeled with the gr:hasValueInteger property. The unit of measurement is specified using the property gr:hasUnitOfMeasurement with a string holding a UN/CEFACT code suitable for durations, e.g. MON (months), DAY (days), HUR (hours), or MIN (minutes).
DOMAIN | PROPERTY | RANGE |
---|---|---|
Blank node (see implementation) | gr:deliveryLeadTime | gr:QuantitativeValueInteger |
@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:deliveryLeadTime a owl:ObjectProperty ;
rdfs:label "delivery lead time (0..1)"@en ;
rdfs:comment """This property can be used to indicate the promised delay between the receipt of the order and the goods leaving the warehouse.
The duration is specified by attaching an instance of gr:QuantitativeValueInteger. The lower and upper boundaries are specified using the properties gr:hasMinValueInteger and gr:hasMaxValueInteger to that instance. A point value can be modeled with the gr:hasValueInteger property. The unit of measurement is specified using the property gr:hasUnitOfMeasurement with a string holding a UN/CEFACT code suitable for durations, e.g. MON (months), DAY (days), HUR (hours), or MIN (minutes)."""@en ;
rdfs:domain [ a owl:Class ;
owl:unionOf ( gr:Offering <http://schema.org/Offer> ) ] ;
rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
rdfs:range gr:QuantitativeValueInteger .