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

LimitedAvailability

A Schema.org Enumeration Member
Indicates that the item has limited availability.

A member value for enumeration type: ItemAvailability
Examples

Example 1
Copied
Example notes or example HTML without markup.
JSON-LD description of a scheduled Event with limited ticket availability and performer details indicated using sameAs.
Example encoded as Microdata embedded in HTML.
This example is JSON only.
Example encoded as RDFa embedded in HTML.
This example is JSON only.
Example encoded as JSON-LD in a HTML script tag.
<script type="application/ld+json">
{
  "@context" : "https://schema.org",
  "@type" : "Event",
  "name" : "Typhoon with Radiation City",
  "startDate" : "2013-09-14T21:30",
  "location" : {
    "@type" : "Place",
    "sameAs" : "http://www.hi-dive.com",
    "name" : "The Hi-Dive",
    "address" : {
      "@type" : "PostalAddress",
      "streetAddress" : "7 S. Broadway",
      "addressLocality" : "Denver",
      "addressRegion" : "CO",
      "postalCode" : "80209" }
  },
  "performer" : [
    { "@type" : "MusicGroup",
      "name" : "Typhoon",
      "sameAs" : "http://en.wikipedia.org/wiki/Typhoon_(American_band)" },
    { "@type" : "MusicGroup",
      "name" : "RadiationCity",
      "sameAs" : "http://en.wikipedia.org/wiki/Radiation_City" }],
  "offers" : {
    "@type" : "Offer",
    "availability" : "https://schema.org/LimitedAvailability",
    "price" : "$13.00",
    "url" : "http://www.ticketfly.com/purchase/309433" },
  "typicalAgeRange" : "18+"
}
</script>
Structured representation of the JSON-LD example.