offers - Schema.org Property (original) (raw)
Note: You are viewing the development version of Schema.org. See how we work for more details.
[more...]
- Canonical URL: https://schema.org/offers
- Equivalent Property: fibo-fnd-pas-pas:isProductOf
- Check for open issues.
An offer to provide this item—for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. Use businessFunction to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a Demand. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.
Inverse-property: itemOffered
Source
https://github.com/schemaorg/schemaorg/issues/2289
Examples
Example notes or example HTML without markup.
Dell UltraSharp 30" LCD Monitor
87 out of 100 based on 24 user ratings 1250to1250 to 1250to1495 from 8 sellers
Sellers: Save A Lot Monitors - $1250 Jon Doe's Gadgets - $1350 ...
Example encoded as Microdata embedded in HTML.
Dell UltraSharp 30" LCD Monitor
Sellers:
<div itemprop="offers" itemscope itemtype="https://schema.org/Offer">
<a itemprop="url" href="save-a-lot-monitors.com/dell-30.html">
Save A Lot Monitors - $1250</a>
</div>
<div itemprop="offers" itemscope itemtype="https://schema.org/Offer">
<a itemprop="url" href="jondoe-gadgets.com/dell-30.html">
Jon Doe's Gadgets - $1350</a>
</div> Example encoded as RDFa embedded in HTML.
Dell UltraSharp 30" LCD Monitor
Example encoded as JSON-LD in a HTML script tag.
Structured representation of the JSON-LD example.
{ "@context": "https://schema.org", "@type": "Product", "aggregateRating": { "@type": "AggregateRating", "bestRating": "100", "ratingCount": "24", "ratingValue": "87" }, "image": "dell-30in-lcd.jpg", "name": "Dell UltraSharp 30\" LCD Monitor", "offers": { "@type": "AggregateOffer", "priceCurrency": "USD", "highPrice": "1495", "lowPrice": "1250", "offerCount": "8", "offers": [ { "@type": "Offer", "url": "save-a-lot-monitors.com/dell-30.html" }, { "@type": "Offer", "url": "jondoe-gadgets.com/dell-30.html" } ] } }
Example notes or example HTML without markup.
NBA Eastern Conference First Round Playoff Tickets: Miami Heat at Philadelphia 76ers - Game 3 (Home Game 1)Thu, 04/21/16 8:00 p.m.
Wells Fargo Center Philadelphia, PAPriced from: $35 1938 tickets left
Example encoded as Microdata embedded in HTML.
Example encoded as RDFa embedded in HTML.
Example encoded as JSON-LD in a HTML script tag.
Structured representation of the JSON-LD example.
{ "@context": "https://schema.org", "@type": "Event", "name": "Miami Heat at Philadelphia 76ers - Game 3 (Home Game 1)", "location": { "@type": "Place", "address": { "@type": "PostalAddress", "addressLocality": "Philadelphia", "addressRegion": "PA" }, "url": "wells-fargo-center.html" }, "offers": { "@type": "AggregateOffer", "priceCurrency": "USD", "lowPrice": "35", "offerCount": "1938" }, "startDate": "2016-04-21T20:00", "url": "nba-miami-philidelphia-game3.html" }