Thing > Organization > LocalBusiness > FoodEstablishment
A food-related business.| Property | Expected Type | Description |
|---|---|---|
| Properties from Thing | ||
description |
Text | A short description of the item. |
image |
URL | URL of an image of the item. |
name |
Text | The name of the item. |
url |
URL | URL of the item. |
| Properties from Place | ||
address |
PostalAddress | Physical address of the item. |
aggregateRating |
AggregateRating | The overall rating, based on a collection of reviews or ratings, of the item. |
containedIn |
Place | The basic containment relation between places. |
event |
Event | Upcoming or past event associated with this place or organization. |
events |
Event | Upcoming or past events associated with this place or organization (legacy spelling; see singular form, event). |
faxNumber |
Text | The fax number. |
geo |
GeoCoordinates or GeoShape | The geo coordinates of the place. |
interactionCount |
Text | A count of a specific user interactions with this item—for example, 20 UserLikes, 5 UserComments, or 300 UserDownloads. The user interaction type should be one of the sub types of UserInteraction. |
map |
URL | A URL to a map of the place. |
maps |
URL | A URL to a map of the place (legacy spelling; see singular form, map). |
photo |
Photograph or ImageObject | A photograph of this place. |
photos |
Photograph or ImageObject | Photographs of this place (legacy spelling; see singular form, photo). |
review |
Review | A review of the item. |
reviews |
Review | Review of the item (legacy spelling; see singular form, review). |
telephone |
Text | The telephone number. |
| Properties from Organization | ||
contactPoint |
ContactPoint | A contact point for a person or organization. |
contactPoints |
ContactPoint | A contact point for a person or organization (legacy spelling; see singular form, contactPoint). |
email |
Text | Email address. |
employee |
Person | Someone working for this organization. |
employees |
Person | People working for this organization. (legacy spelling; see singular form, employee) |
founder |
Person | A person who founded this organization. |
founders |
Person | A person who founded this organization (legacy spelling; see singular form, founder). |
foundingDate |
Date | The date that this organization was founded. |
location |
Place or PostalAddress | The location of the event or organization. |
member |
Person or Organization | A member of this organization. |
members |
Person or Organization | A member of this organization (legacy spelling; see singular form, member). |
| Properties from LocalBusiness | ||
branchOf |
Organization | The larger organization that this local business is a branch of, if any. |
currenciesAccepted |
Text | The currency accepted (in ISO 4217 currency format). |
openingHours |
Duration | The opening hours for a business. Opening hours can be specified as a weekly time range, starting with days, then times per day. Multiple days can be listed with commas ',' separating each day. Day or time ranges are specified using a hyphen '-'. - Days are specified using the following two-letter combinations: Mo, Tu, We, Th, Fr, Sa, Su.- Times are specified using 24:00 time. For example, 3pm is specified as 15:00. - Here is an example: <time itemprop="openingHours" datetime="Tu,Th 16:00-20:00">Tuesdays and Thursdays 4-8pm</time>. - If a business is open 7 days a week, then it can be specified as <time itemprop="openingHours" datetime="Mo-Su">Monday through Sunday, all day</time>. |
paymentAccepted |
Text | Cash, credit card, etc. |
priceRange |
Text | The price range of the business, for example $$$. |
| Properties from FoodEstablishment | ||
acceptsReservations |
Text or URL | Either Yes/No, or a URL at which reservations can be made. |
menu |
Text or URL | Either the actual menu or a URL of the menu. |
servesCuisine |
Text | The cuisine of the restaurant. |
More specific types
Schema Draft Version 0.9
Example 1
Original HTML:
GreatFood 4 stars - based on 250 reviews 1901 Lemur Ave Sunnyvale, CA 94086 (408) 714-1489 <a href="http://www.greatfood.com">www.greatfood.com</a> Hours: Mon-Sat 11am - 2:30pm Mon-Thur 5pm - 9:30pm Fri-Sat 5pm - 10pm Categories: Middle Eastern, Mediterranean Price Range: $$ Takes Reservations: Yes
With Microdata:
<div itemscope itemtype="http://schema.org/Restaurant">
<span itemprop="name">GreatFood</span>
<div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
<span itemprop="ratingValue">4</span> stars -
based on <span itemprop="reviewCount">250</span> reviews
</div>
<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">1901 Lemur Ave</span>
<span itemprop="addressLocality">Sunnyvale</span>,
<span itemprop="addressRegion">CA</span> <span itemprop="postalCode">94086</span>
</div>
<span itemprop="telephone">(408) 714-1489</span>
<a itemprop="url" href="http://www.dishdash.com">www.greatfood.com</a>
Hours:
<meta itemprop="openingHours" content="Mo-Sa 11:00-14:30">Mon-Sat 11am - 2:30pm
<meta itemprop="openingHours" content="Mo-Th 17:00-21:30">Mon-Thu 5pm - 9:30pm
<meta itemprop="openingHours" content="Fr-Sa 17:00-22:00">Fri-Sat 5pm - 10:00pm
Categories:
<span itemprop="servesCuisine">
Middle Eastern
</span>,
<span itemprop="servesCuisine">
Mediterranean
</span>
Price Range: <span itemprop="priceRange">$$</span>
Takes Reservations: Yes
</div>