LocalBusiness — Restaurant
Restaurant schema with address, opening hours, cuisine type, menu link, and aggregate rating.
Rich Result: Local Business rich result (hours, address, reviews)
When to Use
Any restaurant, café, or food service business. Helps Google understand your location, hours, and cuisine for local search results and Knowledge Panel entries.
JSON-LD Code
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Restaurant",
"name": "The Garden Bistro",
"description": "Contemporary farm-to-table dining in the heart of San Francisco's Mission District.",
"image": "https://example.com/restaurant/garden-bistro.jpg",
"url": "https://gardenbistro.com",
"telephone": "+1-415-555-0190",
"email": "[email protected]",
"address": {
"@type": "PostalAddress",
"streetAddress": "456 Valencia Street",
"addressLocality": "San Francisco",
"addressRegion": "CA",
"postalCode": "94103",
"addressCountry": "US"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": 37.7649,
"longitude": -122.4219
},
"openingHoursSpecification": [
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday"],
"opens": "11:30",
"closes": "22:00"
},
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": ["Friday", "Saturday"],
"opens": "11:30",
"closes": "23:00"
},
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": "Sunday",
"opens": "10:00",
"closes": "21:00"
}
],
"servesCuisine": ["American", "Farm-to-Table", "Californian"],
"priceRange": "$$",
"hasMenu": "https://gardenbistro.com/menu",
"acceptsReservations": true,
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.7",
"reviewCount": "892",
"bestRating": "5"
},
"sameAs": [
"https://www.yelp.com/biz/garden-bistro-sf",
"https://g.page/garden-bistro-sf"
]
}
</script>Implementation Notes
Include geo coordinates to help Google precisely map your location. The sameAs array linking to your Yelp and Google Business Profile pages strengthens entity recognition.
Validate & test this schema
Check your implementation against Google guidelines