PostalAddress
schema:Thing > schema:Intangible > schema:StructuredValue > schema:ContactPoint > schema:PostalAddress
The mailing address.
Property | Expected Type | Description |
---|---|---|
Properties from schema:PostalAddress | ||
schema:addressCountry
|
schema:Country | The country. For example, USA. You can also provide the two-letter ISO 3166-1 alpha-2 country code. |
schema:addressLocality
|
schema:Text | The locality. For example, Mountain View. |
schema:addressRegion
|
schema:Text | The region. For example, CA. |
schema:postOfficeBoxNumber
|
schema:Text | The post office box number for PO box addresses. |
schema:postalCode
|
schema:Text | The postal code. For example, 94043. |
schema:streetAddress
|
schema:Text | The street address. For example, 1600 Amphitheatre Pkwy. |
Properties from schema:ContactPoint | ||
schema:areaServed
|
schema:AdministrativeArea | The location served by this contact point (e.g., a phone number intended for Europeans vs. North Americans or only within the United States). |
schema:availableLanguage
|
schema:Language | A language someone may use with the item. |
schema:contactOption
|
schema:ContactPointOption | An option available on this contact point (e.g. a toll-free number or support for hearing-impaired callers). |
schema:contactType
|
schema:Text | A person or organization can have different contact points, for different purposes. For example, a sales contact point, a PR contact point and so on. This property is used to specify the kind of contact point. |
schema:email
|
schema:Text | Email address. |
schema:faxNumber
|
schema:Text | The fax number. |
schema:hoursAvailable
|
schema:OpeningHoursSpecification | The hours during which this contact point is available. |
schema:productSupported
|
schema:Product or schema:Text | The product or service this support contact point is related to (such as product support for a particular product line). This can be a specific product or product line (e.g. "iPhone") or a general category of products or services (e.g. "smartphones"). |
schema:telephone
|
schema:Text | The telephone number. |
Properties from schema:Thing | ||
schema:additionalType
|
schema:URL | An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. |
schema:alternateName
|
schema:Text | An alias for the item. |
schema:description
|
schema:Text | A short description of the item. |
schema:image
|
schema:ImageObject or schema:URL | An image of the item. This can be a URL or a fully described ImageObject. |
schema:name
|
schema:Text | The name of the item. |
schema:potentialAction
|
schema:Action | Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. |
schema:sameAs
|
schema:URL | URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Freebase page, or official website. |
schema:url
|
schema:URL | URL of the item. |
Instances of schema:PostalAddress may appear as values for the following properties
Property | On Types | Description |
---|---|---|
schema:address
|
schema:Organization or schema:Place or schema:Person | Physical address of the item. |
schema:billingAddress
|
schema:Order | The billing address for the order. |
schema:deliveryAddress
|
schema:ParcelDelivery | Destination address. |
schema:gameLocation
|
schema:Game | Real or fictional location of the game (or part of game). |
schema:location
|
schema:Organization or schema:Action or schema:Event | The location of the event, organization or action. |
schema:originAddress
|
schema:ParcelDelivery | Shipper's address. |
schema:servicePostalAddress
|
schema:ServiceChannel | The address for accessing the service by mail. |
Prefixes used:
Examples
Jane Doe <img src="janedoe.jpg" alt="Photo of Jane Joe"/> Professor 20341 Whitworth Institute 405 Whitworth Seattle WA 98052 (425) 123-4567 <a href="mailto:jane-doe@xyz.edu">jane-doe@illinois.edu</a> Jane's home page: <a href="http://www.janedoe.com">janedoe.com</a> Graduate students: <a href="http://www.xyz.edu/students/alicejones.html">Alice Jones</a> <a href="http://www.xyz.edu/students/bobsmith.html">Bob Smith</a>
<div itemscope itemtype="http://schema.org/Person"> <span itemprop="name">Jane Doe</span> <img src="janedoe.jpg" itemprop="image" alt="Photo of Jane Joe"/> <span itemprop="jobTitle">Professor</span> <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress"> <span itemprop="streetAddress"> 20341 Whitworth Institute 405 N. Whitworth </span> <span itemprop="addressLocality">Seattle</span>, <span itemprop="addressRegion">WA</span> <span itemprop="postalCode">98052</span> </div> <span itemprop="telephone">(425) 123-4567</span> <a href="mailto:jane-doe@xyz.edu" itemprop="email"> jane-doe@xyz.edu</a> Jane's home page: <a href="http://www.janedoe.com" itemprop="url">janedoe.com</a> Graduate students: <a href="http://www.xyz.edu/students/alicejones.html" itemprop="colleague"> Alice Jones</a> <a href="http://www.xyz.edu/students/bobsmith.html" itemprop="colleague"> Bob Smith</a> </div>
<div vocab="http://schema.org/" typeof="Person"> <span property="name">Jane Doe</span> <img src="janedoe.jpg" property="image" alt="Photo of Jane Joe"/> <span property="jobTitle">Professor</span> <div property="address" typeof="PostalAddress"> <span property="streetAddress"> 20341 Whitworth Institute 405 N. Whitworth </span> <span property="addressLocality">Seattle</span>, <span property="addressRegion">WA</span> <span property="postalCode">98052</span> </div> <span property="telephone">(425) 123-4567</span> <a href="mailto:jane-doe@xyz.edu" property="email"> jane-doe@xyz.edu</a> Jane's home page: <a href="http://www.janedoe.com" property="url">janedoe.com</a> Graduate students: <a href="http://www.xyz.edu/students/alicejones.html" property="colleague"> Alice Jones</a> <a href="http://www.xyz.edu/students/bobsmith.html" property="colleague"> Bob Smith</a> </div>
<script type="application/ld+json"> { "@context": "http://schema.org", "@type": "Person", "address": { "@type": "PostalAddress", "addressLocality": "Seattle", "addressRegion": "WA", "postalCode": "98052", "streetAddress": "20341 Whitworth Institute 405 N. Whitworth" }, "colleague": [ "http://www.xyz.edu/students/alicejones.html", "http://www.xyz.edu/students/bobsmith.html" ], "email": "mailto:jane-doe@xyz.edu", "image": "janedoe.jpg", "jobTitle": "Professor", "name": "Jane Doe", "telephone": "(425) 123-4567", "url": "http://www.janedoe.com" } </script>
Google.Org Contact Details: Main address: 38 avenue de l'Opera, F-75002 Paris, France Tel: ( 33 1) 42 68 53 00, Fax: ( 33 1) 42 68 53 01 E-mail: secretariat (at) google.org URL: <a href="http://www.google.org">www.google.org</a> Members: - National Scientific Members in 100 countries and territories: Country1, Country2, ... - Scientific Union Members, 30 organizations listed in this Yearbook: Member 1, Member 2 History:
<div itemscope itemtype="http://schema.org/Organization"> <span itemprop="name">Google.org (GOOG)</span> Contact Details: <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress"> Main address: <span itemprop="streetAddress">38 avenue de l'Opera</span> <span itemprop="postalCode">F-75002</span> <span itemprop="addressLocality">Paris, France</span> , </div> Tel:<span itemprop="telephone">( 33 1) 42 68 53 00 </span>, Fax:<span itemprop="faxNumber">( 33 1) 42 68 53 01 </span>, E-mail: <span itemprop="email">secretariat(at)google.org</span> Members: - National Scientific Members in 100 countries and territories: Country1, Country2, ... - Scientific Union Members, 30 organizations listed in this Yearbook: <span itemprop="member" itemscope itemtype="http://schema.org/Organization"> Member1 </span>, <span itemprop="member" itemscope itemtype="http://schema.org/Organization"> Member2 </span>, History: </div>
<div vocab="http://schema.org/" typeof="Organization"> <span property="name">Google.org (GOOG)</span> Contact Details: <div property="address" typeof="PostalAddress"> Main address: <span property="streetAddress">38 avenue de l'Opera</span> <span property="postalCode">F-75002</span> <span property="addressLocality">Paris, France</span> , </div> Tel:<span property="telephone">( 33 1) 42 68 53 00 </span>, Fax:<span property="faxNumber">( 33 1) 42 68 53 01 </span>, E-mail: <span property="email">secretariat(at)google.org</span> Members: - National Scientific Members in 100 countries and territories: Country1, Country2, ... - Scientific Union Members, 30 organizations listed in this Yearbook: <span property="member" typeof="Organization"> Member1 </span>, <span property="member" typeof="Organization"> Member2 </span>, History: </div>
<script type="application/ld+json"> { "@context": "http://schema.org", "@type": "Organization", "address": { "@type": "PostalAddress", "addressLocality": "Paris, France", "postalCode": "F-75002", "streetAddress": "38 avenue de l'Opera" }, "email": "secretariat(at)google.org", "faxNumber": "( 33 1) 42 68 53 01", "member": [ { "@type": "Organization" }, { "@type": "Organization" } ], "name": "Google.org (GOOG)", "telephone": "( 33 1) 42 68 53 00" } </script>
<a href="nba-miami-philidelphia-game3.html"> NBA Eastern Conference First Round Playoff Tickets: Miami Heat at Philadelphia 76ers - Game 3 (Home Game 1) </a> Thu, 04/21/16 8:00 p.m. <a href="wells-fargo-center.html"> Wells Fargo Center </a> Philadelphia, PA Priced from: $35 1938 tickets left
<div itemscope itemtype="http://schema.org/Event"> <a itemprop="url" href="nba-miami-philidelphia-game3.html"> NBA Eastern Conference First Round Playoff Tickets: <span itemprop="name"> Miami Heat at Philadelphia 76ers - Game 3 (Home Game 1) </span> </a> <meta itemprop="startDate" content="2016-04-21T20:00"> Thu, 04/21/16 8:00 p.m. <div itemprop="location" itemscope itemtype="http://schema.org/Place"> <a itemprop="url" href="wells-fargo-center.html"> Wells Fargo Center </a> <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress"> <span itemprop="addressLocality">Philadelphia</span>, <span itemprop="addressRegion">PA</span> </div> </div> <div itemprop="offers" itemscope itemtype="http://schema.org/AggregateOffer"> Priced from: <span itemprop="lowPrice">$35</span> <span itemprop="offerCount">1938</span> tickets left </div> </div>
<div vocab="http://schema.org/" typeof="Event"> <a property="url" href="nba-miami-philidelphia-game3.html"> NBA Eastern Conference First Round Playoff Tickets: <span property="name"> Miami Heat at Philadelphia 76ers - Game 3 (Home Game 1) </span> </a> <meta property="startDate" content="2016-04-21T20:00"> Thu, 04/21/16 8:00 p.m. <div property="location" typeof="Place"> <a property="url" href="wells-fargo-center.html"> Wells Fargo Center </a> <div property="address" typeof="PostalAddress"> <span property="addressLocality">Philadelphia</span>, <span property="addressRegion">PA</span> </div> </div> <div property="offers" typeof="AggregateOffer"> Priced from: <span property="lowPrice">$35</span> <span property="offerCount">1938</span> tickets left </div> </div>
<script type="application/ld+json"> { "@context": "http://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", "lowPrice": "$35", "offerCount": "1938" }, "startDate": "2016-04-21T20:00", "url": "nba-miami-philidelphia-game3.html" } </script>
Google Inc. P.O. Box 1234 Mountain View, CA 94043 United States
<div itemscope itemtype="http://schema.org/PostalAddress"> <span itemprop="name">Google Inc.</span> P.O. Box<span itemprop="postOfficeBoxNumber">1234</span> <span itemprop="addressLocality">Mountain View</span>, <span itemprop="addressRegion">CA</span> <span itemprop="postalCode">94043</span> <span itemprop="addressCountry">United States</span> </div>
<div vocab="http://schema.org/" typeof="PostalAddress"> <span property="name">Google Inc.</span> P.O. Box<span property="postOfficeBoxNumber">1234</span> <span property="addressLocality">Mountain View</span>, <span property="addressRegion">CA</span> <span property="postalCode">94043</span> <span property="addressCountry">United States</span> </div>
<script type="application/ld+json"> { "@context": "http://schema.org", "@type": "PostalAddress", "addressCountry": "United States", "addressLocality": "Mountain View", "addressRegion": "CA", "name": "Google Inc.", "postOfficeBoxNumber": "1234", "postalCode": "94043" } </script>
<div class="event-wrapper"> <div class="event-date">Sat Sep 14</div> <div class="event-title">Typhoon with Radiation City</div> <div class="event-venue"> The Hi-Dive <div class="address"> 7 S. Broadway<br> Denver, CO 80209 </div> </div> <div class="event-time">9:30 PM</div> <div class="event-price">$13.00</div> <a href="http://www.ticketfly.com/purchase/309433">Tickets</a> </div>
<div class="event-wrapper" itemscope itemtype="http://schema.org/Event"> <div class="event-date" itemprop="startDate" content="2013-09-14T21:30">Sat Sep 14</div> <div class="event-title" itemprop="name">Typhoon with Radiation City</div> <div class="event-venue" itemprop="location" itemscope itemtype="http://schema.org/Place"> <span itemprop="name">The Hi-Dive</span> <div class="address" itemprop="address" itemscope itemtype="http://schema.org/PostalAddress"> <span itemprop="streetAddress">7 S. Broadway</span><br> <span itemprop="addressLocality">Denver</span>, <span itemprop="addressRegion">CO</span> <span itemprop="postalCode">80209</span> </div> </div> <div class="event-time">9:30 PM</div> <span itemprop="offers" itemscope itemtype="http://schema.org/Offer"> <div class="event-price" itemprop="price" content="13.00">$13.00</div> <span itemprop="priceCurrency" content="USD" /> <a itemprop="url" href="http://www.ticketfly.com/purchase/309433">Tickets</a> </span> </div>
<div vocab="http://schema.org/" class="event-wrapper" typeof="Event"> <div class="event-date" property="startDate" content="2013-09-14T21:30">Sat Sep 14</div> <div class="event-title" property="name">Typhoon with Radiation City</div> <div class="event-venue" property="location" typeof="Place"> <span property="name">The Hi-Dive</span> <div class="address" property="address" typeof="PostalAddress"> <span property="streetAddress">7 S. Broadway</span><br> <span property="addressLocality">Denver</span>, <span property="addressRegion">CO</span> <span property="postalCode">80209</span> </div> </div> <div class="event-time">9:30 PM</div> <span property="offers" typeof="Offer"> <div class="event-price" property="price" content="13.00">$13.00</div> <span property="priceCurrency" content="USD" /> <a property="url" href="http://www.ticketfly.com/purchase/309433">Tickets</a> </span> </div>
<script type="application/ld+json"> { "@context": "http://schema.org", "@type": "Event", "location": { "@type": "Place", "address": { "@type": "PostalAddress", "addressLocality": "Denver", "addressRegion": "CO", "postalCode": "80209", "streetAddress": "7 S. Broadway" }, "name": "The Hi-Dive" }, "name": "Typhoon with Radiation City", "offers": { "@type": "Offer", "price": "13.00", "priceCurrency": "USD", "url": "http://www.ticketfly.com/purchase/309433" }, "startDate": "Sat Sep 14" } </script>
<div class="event-wrapper"> <div class="event-date">Sat Sep 14</div> <div class="event-title">Typhoon with Radiation City</div> <div class="event-title">CANCELLED - Typhoon with Radiation City</div> <div class="event-venue"> The Hi-Dive <div class="address"> 7 S. Broadway<br> Denver, CO 80209 </div> </div> <div class="event-time">9:30 PM</div> <div class="event-price">$13.00</div> <a href="http://www.ticketfly.com/purchase/309433">Tickets</a> </div>
<div class="event-wrapper" itemscope itemtype="http://schema.org/Event"> <div class="event-date" itemprop="startDate" content="2013-09-14T21:30">Sat Sep 14</div> <div class="event-title" itemprop="name">CANCELLED - Typhoon with Radiation City</div> <meta itemprop="eventStatus" content="http://schema.org/EventCancelled"> <div class="event-venue" itemprop="location" itemscope itemtype="http://schema.org/Place"> <span itemprop="name">The Hi-Dive</span> <div class="address" itemprop="address" itemscope itemtype="http://schema.org/PostalAddress"> <span itemprop="streetAddress">7 S. Broadway</span><br> <span itemprop="addressLocality">Denver</span>, <span itemprop="addressRegion">CO</span> <span itemprop="postalCode">80209</span> </div> </div> <div class="event-time">9:30 PM</div> <span itemprop="offers" itemscope itemtype="http://schema.org/Offer"> <div class="event-price" itemprop="price" content="13.00">$13.00</div> <span itemprop="priceCurrency" content="USD" /> <a itemprop="url" href="http://www.ticketfly.com/purchase/309433">Tickets</a> </span> </div>
<div vocab="http://schema.org/" class="event-wrapper" typeof="Event"> <div class="event-date" property="startDate" content="2013-09-14T21:30">Sat Sep 14</div> <div class="event-title" property="name">CANCELLED - Typhoon with Radiation City</div> <meta property="eventStatus" content="http://schema.org/EventCancelled"> <div class="event-venue" property="location" typeof="Place"> <span property="name">The Hi-Dive</span> <div class="address" property="address" typeof="PostalAddress"> <span property="streetAddress">7 S. Broadway</span><br> <span property="addressLocality">Denver</span>, <span property="addressRegion">CO</span> <span property="postalCode">80209</span> </div> </div> <div class="event-time">9:30 PM</div> <span property="offers" typeof="Offer"> <div class="event-price" property="price">$13.00</div> <a property="url" href="http://www.ticketfly.com/purchase/309433">Tickets</a> </span> </div>
<script type="application/ld+json"> { "@context": "http://schema.org", "@type": "Event", "eventStatus": "http://schema.org/EventCancelled", "location": { "@type": "Place", "address": { "@type": "PostalAddress", "addressLocality": "Denver", "addressRegion": "CO", "postalCode": "80209", "streetAddress": "7 S. Broadway" }, "name": "The Hi-Dive" }, "name": "CANCELLED - Typhoon with Radiation City", "offers": { "@type": "Offer", "price": "13.00", "priceCurrency": "USD", "url": "http://www.ticketfly.com/purchase/309433" }, "startDate": "Sat Sep 14" } </script>
<div class="event-wrapper"> <div class="event-date">Sat Oct 12</div> <div><span>(previously scheduled for Sept 14th)</span></div> <div class="event-title">Typhoon with Radiation City</div> <div class="event-venue"> The Hi-Dive <div class="address"> 7 S. Broadway<br> Denver, CO 80209 </div> </div> <div class="event-time">10:00 PM</div> <span> <div class="event-price">$13.00</div> <a href="http://www.ticketfly.com/purchase/309433">Tickets</a> </span> </div>
<div class="event-wrapper"> <div class="event-date" itemprop="startDate" content="2013-10-12T22:00">Sat Oct 12</div> <div class="event-title" itemprop="name">Typhoon with Radiation City</div> <meta itemprop="eventStatus" content="http://schema.org/EventRescheduled"> <span itemprop="previousStartDate" content="2013-09-14T21:30">(previously scheduled for Sept 14th)</span> <div class="event-venue" itemprop="location" itemscope itemtype="http://schema.org/Place"> <span itemprop="name">The Hi-Dive</span> <div class="address" itemprop="address" itemscope itemtype="http://schema.org/PostalAddress"> <span itemprop="streetAddress">7 S. Broadway</span><br> <span itemprop="addressLocality">Denver</span>, <span itemprop="addressRegion">CO</span> <span itemprop="postalCode">80209</span> </div> </div> <div class="event-time">10:00 PM</div> <span itemprop="offers" itemscope itemtype="http://schema.org/Offer"> <div class="event-price" itemprop="price" content="13.00">$13.00</div> <span itemprop="priceCurrency" content="USD" /> <a itemprop="url" href="http://www.ticketfly.com/purchase/309433">Tickets</a> </span> </div>
<div vocab="http://schema.org/" class="event-wrapper"> <div class="event-date" property="startDate" content="2013-10-12T22:00">Sat Oct 12</div> <div class="event-title" property="name">Typhoon with Radiation City</div> <meta property="eventStatus" content="http://schema.org/EventRescheduled"> <span property="previousStartDate" content="2013-09-14T21:30">(previously scheduled for Sept 14th)</span> <div class="event-venue" property="location" typeof="Place"> <span property="name">The Hi-Dive</span> <div class="address" property="address" typeof="PostalAddress"> <span property="streetAddress">7 S. Broadway</span><br> <span property="addressLocality">Denver</span>, <span property="addressRegion">CO</span> <span property="postalCode">80209</span> </div> </div> <div class="event-time">10:00 PM</div> <span property="offers" typeof="Offer"> <div class="event-price" property="price" content="13.00">$13.00</div> <span property="priceCurrency" content="USD" /> <a property="url" href="http://www.ticketfly.com/purchase/309433">Tickets</a> </span> </div>
<script type="application/ld+json"> { "@context": "http://schema.org", "@graph": [ { "@type": "Place", "address": { "@type": "PostalAddress", "addressLocality": "Denver", "addressRegion": "CO", "postalCode": "80209", "streetAddress": "7 S. Broadway" }, "name": "The Hi-Dive" }, { "@type": "Offer", "price": "13.00", "priceCurrency": "USD", "url": "http://www.ticketfly.com/purchase/309433" } ] } </script>
<div class="event-wrapper"> <div class="event-date">Sat Sep 14</div> <div class="event-title">SOLD OUT! Typhoon with Radiation City</div> <div class="event-venue"> The Hi-Dive <div class="address"> 7 S. Broadway<br> Denver, CO 80209 </div> </div> <div class="event-time">10:00 PM</div> <span> <div class="event-price">$13.00</div> <a href="http://www.ticketfly.com/purchase/309433">Tickets</a> </span> </div>
<div class="event-wrapper" itemscope itemtype="http://schema.org/Event"> <div class="event-date" itemprop="startDate" content="2013-09-14T21:30">Sat Sep 14</div> <div class="event-title" itemprop="name">SOLD OUT! Typhoon with Radiation City</div> <div class="event-venue" itemprop="location" itemscope itemtype="http://schema.org/Place"> <span itemprop="name">The Hi-Dive</span> <div class="address" itemprop="address" itemscope itemtype="http://schema.org/PostalAddress"> <span itemprop="streetAddress">7 S. Broadway</span><br> <span itemprop="addressLocality">Denver</span>, <span itemprop="addressRegion">CO</span> <span itemprop="postalCode">80209</span> </div> </div> <div class="event-time">9:30 PM</div> <span itemprop="offers" itemscope itemtype="http://schema.org/Offer"> <meta itemprop="availability" content="http://schema.org/SoldOut"> <div class="event-price" itemprop="price" content="13.00">$13.00</div> <span itemprop="priceCurrency" content="USD" /> <a itemprop="url" href="http://www.ticketfly.com/purchase/309433">Tickets</a> </span> </div>
<div vocab="http://schema.org/" class="event-wrapper" typeof="Event"> <div class="event-date" property="startDate" content="2013-09-14T21:30">Sat Sep 14</div> <div class="event-title" property="name">SOLD OUT! Typhoon with Radiation City</div> <div class="event-venue" property="location" typeof="Place"> <span property="name">The Hi-Dive</span> <div class="address" property="address" typeof="PostalAddress"> <span property="streetAddress">7 S. Broadway</span><br> <span property="addressLocality">Denver</span>, <span property="addressRegion">CO</span> <span property="postalCode">80209</span> </div> </div> <div class="event-time">9:30 PM</div> <span property="offers" typeof="Offer"> <meta property="availability" content="http://schema.org/SoldOut"> <div class="event-price" property="price" content="13.00">$13.00</div> <span property="priceCurrency" content="USD" /> <a property="url" href="http://www.ticketfly.com/purchase/309433">Tickets</a> </span> </div>
<script type="application/ld+json"> { "@context": "http://schema.org", "@type": "Event", "location": { "@type": "Place", "address": { "@type": "PostalAddress", "addressLocality": "Denver", "addressRegion": "CO", "postalCode": "80209", "streetAddress": "7 S. Broadway" }, "name": "The Hi-Dive" }, "name": "SOLD OUT! Typhoon with Radiation City", "offers": { "@type": "Offer", "availability": "http://schema.org/SoldOut", "price": "13.00", "priceCurrency": "USD", "url": "http://www.ticketfly.com/purchase/309433" }, "startDate": "Sat Sep 14" } </script>
JSON-LD description of a scheduled Event with limited ticket availability and performer details indicated using sameAs.
This example is JSON only.
This example is JSON only.
<script type="application/ld+json"> { "@context" : "http://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" : "http://schema.org/LimitedAvailability", "price" : "$13.00", "url" : "http://www.ticketfly.com/purchase/309433" }, "typicalAgeRange" : "18+" } </script>
<div> <div> <h1>Delia's Daily Supplies</h1> <p>For your daily newspapers, candies, snacks and (via our in-store pharmacy) drugs and healthcare products to keep you and your family happy, healthy and supplied with all your daily needs.</p> <p>Open: Monday-Friday 7am-11pm</p> <p>Phone: 555-0100-1110</p> </div> <address> <span> Unit 42, Land of Bargains Shopping Paradise, 12 Highway 101</span>, <span>Boston</span>, <span>MA, USA</span> </address> <div> <h2>Philippa's Pharmacy</h2> <p>A superb collection of fine pharmaceuticals...</p> <p>Open: Monday-Thursday 9am-noon</p> <p>Phone: 555-0100-1111</p> </div> </div>
<div itemscope itemtype="http://schema.org/Store"> <div> <h1 itemprop="name">Delia's Daily Supplies</h1> <p itemprop="description">For your daily newspapers, candies, snacks and (via our in-store pharmacy) drugs and healthcare products to keep you and your family happy, healthy and supplied with all your daily needs.</p> <p>Open: <time itemprop="openingHours" datetime="Mo-Fr 07:00-23:00">Monday-Friday 7am-11pm </time></p> <p>Phone: <span itemprop="telephone" content="+155501001110">555-0100-1110</span></p> </div> <address itemprop="address" itemscope itemtype="http://schema.org/PostalAddress"> <span itemprop="streetAddress"> Unit 42, Land of Bargains Shopping Paradise, 12 Highway 101</span>, <span itemprop="addressLocality">Boston</span>, <span itemprop="addressRegion">MA</span>, <span itemprop="addressCountry">USA</span> </address> <div itemprop="department" itemscope itemtype="http://schema.org/Pharmacy"> <h2 itemprop="name">Philippa's Pharmacy</h2> <p itemprop="description">A superb collection of fine pharmaceuticals...</p> <p>Open: <time itemprop="openingHours" datetime="Mo-Th 09:00-12:00">Monday-Thursday 9am-noon</time></p> <p>Phone: <span itemprop="telephone" content="+155501001111">555-0100-1111</span></p> </div> </div>
<div vocab="http://schema.org/" typeof="Store"> <div> <h1 property="name">Delia's Daily Supplies</h1> <p property="description">For your daily newspapers, candies, snacks and (via our in-store pharmacy) drugs and healthcare products to keep you and your family happy, healthy and supplied with all your daily needs.</p> <p>Open: <time property="openingHours" datetime="Mo-Fr 07:00-23:00">Monday-Friday 7am-11pm </time></p> <p>Phone: <span property="telephone" content="+155501001110">555-0100-1110</span></p> </div> <address property="address" typeof="PostalAddress"> <span property="streetAddress"> Unit 42, Land of Bargains Shopping Paradise, 12 Highway 101</span>, <span property="addressLocality">Boston</span>, <span property="addressRegion">MA</span>, <span property="addressCountry">USA</span> </address> <div property="department" typeof="Pharmacy"> <h2 property="name">Philippa's Pharmacy</h2> <p property="description">A superb collection of fine pharmaceuticals...</p> <p>Open: <time property="openingHours" datetime="Mo-Th 09:00-12:00">Monday-Thursday 9am-noon</time></p> <p>Phone: <span property="telephone" content="+155501001111">555-0100-1111</span></p> </div> </div>
<script type="application/ld+json"> { "@context": "http://schema.org", "@type": "Store", "name": "Delia's Daily Supplies", "description": "For your daily newspapers, candies, snacks and (via our in-store pharmacy) drugs and healthcare products to keep you and your family happy, healthy and supplied with all your daily needs.", "openingHours": "Mo-Fr 07:00-23:00", "telephone": "+155501001110", "address": { "@type": "PostalAddress", "streetAddress": "Unit 42, Land of Bargains Shopping Paradise, 12 Highway 101", "addressLocality": "Boston", "addressRegion": "MA", "addressCountry": "USA" }, "department": { "@type": "Pharmacy", "name": "Philippa's Pharmacy", "description": "A superb collection of fine pharmaceuticals for your beauty and healthcare needs, a department of Delia's Drugstore. Call our desk to speak to the on-duty pharmacist any morning Monday-Thursday.", "openingHours": "Mo-Th 09:00-12:00", "telephone": "+155501001111" } } </script>
<div> <div> <h1>Delia's Daily Supplies</h1> <p>For your daily newspapers, candies, snacks and (via our in-store pharmacy) drugs and healthcare products to keep you and your family happy, healthy and supplied with all your daily needs.</p> <p>Open: Monday-Friday 7am-11pm</p> <p>Phone: 555-0100-1110</p> </div> <address> <span>Unit 42, Land of Bargains Shopping Paradise, 12 Highway 101</span>, <span>Boston</span>, <span>MA, USA</span> </address> <div> <h2>Philippa's Pharmacy</h2> <p>A superb collection of fine pharmaceuticals...</p> <p>Open: Monday-Thursday 9am-noon</p> <p>Phone: 555-0100-1111</p> <address> <span>Unit 42b, Land of Bargains Shopping Paradise, 12 Highway 101</span>, <span>Boston</span>, <span>MA, USA</span> </address> </div> </div>
<div itemscope itemtype="http://schema.org/Store"> <div> <h1 itemprop="name">Delia's Daily Supplies</h1> <p itemprop="description">For your daily newspapers, candies, snacks and (via our in-store pharmacy) drugs and healthcare products to keep you and your family happy, healthy and supplied with all your daily needs.</p> <p>Open: <time itemprop="openingHours" datetime="Mo-Fr 07:00-23:00">Monday-Friday 7am-11pm </time></p> <p>Phone: <span itemprop="telephone" content="+155501001110">555-0100-1110</span></p> </div> <address itemprop="address" itemscope itemtype="http://schema.org/PostalAddress"> <span itemprop="streetAddress">Unit 42, Land of Bargains Shopping Paradise, 12 Highway 101</span>, <span itemprop="addressLocality">Boston</span>, <span itemprop="addressRegion">MA</span>, <span itemprop="addressCountry">USA</span> </address> <div itemprop="department" itemscope itemtype="http://schema.org/Pharmacy"> <h2 itemprop="name">Philippa's Pharmacy</h2> <p itemprop="description">A superb collection of fine pharmaceuticals...</p> <p>Open: <time itemprop="openingHours" datetime="Mo-Th 09:00-12:00">Monday-Thursday 9am-noon</time></p> <p>Phone: <span itemprop="telephone" content="+155501001111">555-0100-1111</span></p> <address itemprop="address" itemscope itemtype="http://schema.org/PostalAddress"> <span itemprop="streetAddress">Unit 42b, Land of Bargains Shopping Paradise, 12 Highway 101</span>, <span itemprop="addressLocality">Boston</span>, <span itemprop="addressRegion">MA</span>, <span itemprop="addressCountry">USA</span> </address> </div> </div>
<div vocab="http://schema.org/" typeof="Store"> <div> <h1 property="name">Delia's Daily Supplies</h1> <p property="description">For your daily newspapers, candies, snacks and (via our in-store pharmacy) drugs and healthcare products to keep you and your family happy, healthy and supplied with all your daily needs.</p> <p>Open: <time property="openingHours" datetime="Mo-Fr 07:00-23:00">Monday-Friday 7am-11pm </time></p> <p>Phone: <span property="telephone" content="+155501001110">555-0100-1110</span></p> </div> <address property="address" typeof="PostalAddress"> <span property="streetAddress">Unit 42, Land of Bargains Shopping Paradise, 12 Highway 101</span>, <span property="addressLocality">Boston</span>, <span property="addressRegion">MA</span>, <span property="addressCountry">USA</span> </address> <div property="department" typeof="Pharmacy"> <h2 property="name">Philippa's Pharmacy</h2> <p property="description">A superb collection of fine pharmaceuticals...</p> <p>Open: <time property="openingHours" datetime="Mo-Th 09:00-12:00">Monday-Thursday 9am-noon</time></p> <p>Phone: <span property="telephone" content="+155501001111">555-0100-1111</span></p> <address property="address" typeof="PostalAddress"> <span property="streetAddress">Unit 42b, Land of Bargains Shopping Paradise, 12 Highway 101</span>, <span property="addressLocality">Boston</span>, <span property="addressRegion">MA</span>, <span property="addressCountry">USA</span> </address> </div> </div>
<script type="application/ld+json"> { "@context": "http://schema.org", "@type": "Store", "name": "Delia's Daily Supplies", "description": "For your daily newspapers, candies, snacks and (via our in-store pharmacy) drugs and healthcare products to keep you and your family happy, healthy and supplied with all your daily needs.", "openingHours": "Mo-Fr 07:00-23:00", "telephone": "+155501001110", "address": { "@type": "PostalAddress", "streetAddress": "Unit 42, Land of Bargains Shopping Paradise, 12 Highway 101", "addressLocality": "Boston", "addressRegion": "MA", "addressCountry": "USA" }, "department": { "@type": "Pharmacy", "name": "Philippa's Pharmacy", "description": "A superb collection of fine pharmaceuticals for your beauty and healthcare needs, a department of Delia's Drugstore. Call our desk to speak to the on-duty pharmacist any morning Monday-Thursday.", "openingHours": "Mo-Th 09:00-12:00", "telephone": "+155501001111", "address": { "@type": "PostalAddress", "streetAddress": "Unit 42b, Land of Bargains Shopping Paradise, 12 Highway 101", "addressLocality": "Boston", "addressRegion": "MA", "addressCountry": "USA" } } } </script>
An example of a more fully specified MusicEvent, including a tour image, full venue address, multiple performers, and multiple ticket classes.
This example is JSON-only.
This example is JSON-only.
<script type="application/ld+json"> [{ "@context" : "http://schema.org", "@type" : "MusicEvent", "name" : "B.B. King with Jonathon \"Boogie\" Long", "image" : "http://www.bbking.com/gallery/b-b-king-live.jpg", "url" : "http://www.bbking.com/events/apr12-providence.html", "startDate" : "2014-04-12T19:30", "doorTime" : "18:30", "endDate" : "2014-04-12T22:00", "location" : { "@type" : "Place", "name" : "Lupo's Heartbreak Hotel", "sameAs" : "http://lupos.com/", "address" : { "@type" : "PostalAddress", "streetAddress" : "79 Washington St.", "addressLocality" : "Providence", "addressRegion" : "RI", "postalCode" : "02903", "addressCountry" : "US" } }, "offers" : [ { "@type" : "Offer", "name" : "General Admission", "price" : "$63.25", "availability" : "SoldOut", "url" : "http://www.ticketmaster.com/event/17004C29" },{ "@type" : "Offer", "name" : "VIP Experience", "url" : "http://www.example.com/Abcde12345", "price" : "$299.00", "validFrom" : "2014-02-05T10:00", "validThrough" : "2014-03-19T23:59" } ], "performer" : [ { "@type" : "MusicGroup", "name" : "B.B. King", "sameAs" : "http://en.wikipedia.org/wiki/B.B._King" },{ "@type" : "MusicGroup", "name" : "Jonathon \"Boogie\" Long", "sameAs" : "http://jonathonboogielong.com/" } ], "eventStatus" : "EventRescheduled", "previousStartDate" : "2013-09-30T19:30", "typicalAgeRange" : "18+" }] </script>
BiblioGraph.net Version 1.1
Schema.org Version 1.93
Code Version 1.1