InStock - Schema.org Enumeration Member (original) (raw)

Note: You are viewing the development version of Schema.org. See how we work for more details.

A Schema.org Enumeration Member

Indicates that the item is in stock.

A member value for enumeration type: ItemAvailability

Examples

Example notes or example HTML without markup.

Kenmore White 17" Microwave Kenmore 17" Microwave Rated 3.5/5 based on 11 customer reviews

$55.00 In stock

Product description: 0.7 cubic feet countertop microwave. Has six preset cooking categories and convenience features like Add-A-Minute and Child Lock.

Customer reviews:

Not a happy camper - by Ellie, April 1, 2011 1/5 stars The lamp burned out and now I have to replace it.

Value purchase - by Lucas, March 25, 2011 4/5 stars Great microwave for the price. It is small and fits in my apartment. ...

Example encoded as Microdata embedded in HTML.

Kenmore White 17" Microwave Kenmore 17" Microwave
Rated 3.5/5 based on 11 customer reviews
<!--price is 1000, a number, with locale-specific thousands separator
and decimal mark, and the $ character is marked up with the
machine-readable code "USD" -->
<span itemprop="priceCurrency" content="USD">$</span><span
      itemprop="price" content="1000.00">1,000.00</span>

<link itemprop="availability" href="https://schema.org/InStock" />In stock

Product description: 0.7 cubic feet countertop microwave. Has six preset cooking categories and convenience features like Add-A-Minute and Child Lock.

Customer reviews:

Not a happy camper - by Ellie, April 1, 2011
1/ 5stars
The lamp burned out and now I have to replace it.
Value purchase - by Lucas, March 25, 2011
4/ 5stars
Great microwave for the price. It is small and fits in my apartment.
...

Example encoded as RDFa embedded in HTML.

Kenmore White 17" Microwave Kenmore 17" Microwave
Rated 3.5/5 based on 11 customer reviews
$1,000.00 In stock

Product description: 0.7 cubic feet countertop microwave. Has six preset cooking categories and convenience features like Add-A-Minute and Child Lock.

Customer reviews:

Not a happy camper - by Ellie, April 1, 2011
1/ 5stars
The lamp burned out and now I have to replace it.
Value purchase - by Lucas, March 25, 2011
4/ 5stars
Great microwave for the price. It is small and fits in my apartment.
...

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", "ratingValue": "3.5", "reviewCount": "11" }, "description": "0.7 cubic feet countertop microwave. Has six preset cooking categories and convenience features like Add-A-Minute and Child Lock.", "name": "Kenmore White 17\" Microwave", "image": "kenmore-microwave-17in.jpg", "offers": { "@type": "Offer", "availability": "https://schema.org/InStock", "price": "55.00", "priceCurrency": "USD" }, "review": [ { "@type": "Review", "author": "Ellie", "datePublished": "2011-04-01", "reviewBody": "The lamp burned out and now I have to replace it.", "name": "Not a happy camper", "reviewRating": { "@type": "Rating", "bestRating": "5", "ratingValue": "1", "worstRating": "1" } }, { "@type": "Review", "author": "Lucas", "datePublished": "2011-03-25", "reviewBody": "Great microwave for the price. It is small and fits in my apartment.", "name": "Value purchase", "reviewRating": { "@type": "Rating", "bestRating": "5", "ratingValue": "4", "worstRating": "1" } } ] }