shippingRate
A Schema.org Property
- Canonical URL: https://schema.org/shippingRate
- Check for open issues.
The shipping rate is the cost of shipping to the specified destination. Typically, the maxValue and currency values (of the MonetaryAmount) are most appropriate.
Source
https://github.com/schemaorg/schemaorg/issues/2506
htps://github.com/schemaorg/schemaorg/issues/3617
Examples
Example 1
Copied
Example notes or example HTML without markup.
- Offer shipping details example with nested delivery time(JSON-LD only).
Example encoded as JSON-LD in a HTML script tag.
- <script type="application/ld+json">
- {
- "@context": "https://schema.org",
- "@type": "OfferShippingDetails",
- "deliveryTime": {
- "@type": "ShippingDeliveryTime",
- "businessDays": {
- "@type": "OpeningHoursSpecification",
- "dayOfWeek": [
- "https://schema.org/Monday",
- "https://schema.org/Tuesday",
- "https://schema.org/Wednesday",
- "https://schema.org/Thursday",
- "https://schema.org/Friday"
- ]
- },
- "cutoffTime": "12:00:15Z",
- "handlingTime": {
- "@type": "QuantitativeValue",
- "minValue": 1,
- "maxValue": 2,
- "unitCode": "d"
- },
- "transitTime": {
- "@type": "QuantitativeValue",
- "minValue": 1,
- "maxValue": 10,
- "unitCode": "d"
- }
- },
- "shippingRate": {
- "@type": "MonetaryAmount",
- "value": 4.95,
- "currency": "USD"
- }
- }
- </script>
Structured representation of the JSON-LD example.