core + auto (Auto Extension): terms relating to automobiles.

SoldOut

Canonical URL: http://schema.org/SoldOut

Thing > Intangible > Enumeration > ItemAvailability :: SoldOut

Indicates that the item has sold out.

Usage: Fewer than 10 domains


Examples

Example 1
  1. <div class="event-wrapper">
  2.   <div class="event-date">Sat Sep 14</div>
  3.   <div class="event-title">SOLD OUT! Typhoon with Radiation City</div>
  4.   <div class="event-venue">
  5.     The Hi-Dive
  6.     <div class="address">
  7.       7 S. Broadway<br>
  8.       Denver, CO 80209
  9.     </div>
  10.   </div>
  11.   <div class="event-time">10:00 PM</div>
  12.  <span>
  13.   <div class="event-price">$13.00</div>
  14.   <a href="http://www.ticketfly.com/purchase/309433">Tickets</a>
  15.  </span>
  16. </div>
  1. <div class="event-wrapper" itemscope itemtype="http://schema.org/Event">
  2.   <div class="event-date" itemprop="startDate" content="2013-09-14T21:30">Sat Sep 14</div>
  3.   <div class="event-title" itemprop="name">SOLD OUT! Typhoon with Radiation City</div>
  4.   <div class="event-venue" itemprop="location" itemscope itemtype="http://schema.org/Place">
  5.     <span itemprop="name">The Hi-Dive</span>
  6.     <div class="address" itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
  7.       <span itemprop="streetAddress">7 S. Broadway</span><br>
  8.       <span itemprop="addressLocality">Denver</span>,
  9.       <span itemprop="addressRegion">CO</span>
  10.       <span itemprop="postalCode">80209</span>
  11.     </div>
  12.   </div>
  13.   <div class="event-time">9:30 PM</div>
  14.  <span itemprop="offers" itemscope itemtype="http://schema.org/Offer">
  15.   <meta itemprop="availability" content="http://schema.org/SoldOut">
  16.   <div class="event-price" itemprop="price" content="13.00">$13.00</div>
  17.     <span itemprop="priceCurrency" content="USD" />
  18.     <a itemprop="url" href="http://www.ticketfly.com/purchase/309433">Tickets</a>
  19.  </span>
  20. </div>
  1. <div vocab="http://schema.org/" class="event-wrapper" typeof="Event">
  2.   <div class="event-date" property="startDate" content="2013-09-14T21:30">Sat Sep 14</div>
  3.   <div class="event-title" property="name">SOLD OUT! Typhoon with Radiation City</div>
  4.   <div class="event-venue" property="location" typeof="Place">
  5.     <span property="name">The Hi-Dive</span>
  6.     <div class="address" property="address" typeof="PostalAddress">
  7.       <span property="streetAddress">7 S. Broadway</span><br>
  8.       <span property="addressLocality">Denver</span>,
  9.       <span property="addressRegion">CO</span>
  10.       <span property="postalCode">80209</span>
  11.     </div>
  12.   </div>
  13.   <div class="event-time">9:30 PM</div>
  14.  <span property="offers" typeof="Offer">
  15.   <meta property="availability" content="http://schema.org/SoldOut">
  16.   <div class="event-price">
  17.     <meta property="priceCurrency" content="USD" />$
  18.     <meta property="price" content="13.00" />13.00
  19.   </div>
  20.   <a property="url" href="http://www.ticketfly.com/purchase/309433">Tickets</a>
  21.  </span>
  22. </div>
  1. <script type="application/ld+json">
  2. {
  3.   "@context": "http://schema.org",
  4.   "@type": "Event",
  5.   "location": {
  6.     "@type": "Place",
  7.     "address": {
  8.       "@type": "PostalAddress",
  9.       "addressLocality": "Denver",
  10.       "addressRegion": "CO",
  11.       "postalCode": "80209",
  12.       "streetAddress": "7 S. Broadway"
  13.     },
  14.     "name": "The Hi-Dive"
  15.   },
  16.   "name": "SOLD OUT! Typhoon with Radiation City",
  17.   "offers": {
  18.     "@type": "Offer",
  19.     "availability": "http://schema.org/SoldOut",
  20.     "price": "13.00",
  21.     "priceCurrency": "USD",
  22.     "url": "http://www.ticketfly.com/purchase/309433"
  23.   },
  24.   "startDate": "2013-09-14T21:30"
  25. }
  26. </script>

Schema Version 3.2