Schema Examples
Schema Markup Examples
Real-world examples of properly formatted schema markup for different content types and business scenarios.
Local Restaurant
Schema markup for a local restaurant with location and contact details
{
"@context": "https://schema.org",
"@type": "Restaurant",
"name": "Bella Vista Italian Restaurant",
"description": "Authentic Italian cuisine in the heart of downtown",
"url": "https://bellavista-restaurant.com",
"telephone": "+1-555-123-4567",
"email": "info@bellavista-restaurant.com",
"address": {
"@type": "PostalAddress",
"streetAddress": "123 Main Street",
"addressLocality": "New York",
"addressRegion": "NY",
"postalCode": "10001",
"addressCountry": "US"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": "40.7128",
"longitude": "-74.0060"
},
"openingHours": [
"Mo-Th 11:00-22:00",
"Fr-Sa 11:00-23:00",
"Su 12:00-21:00"
],
"priceRange": "$$",
"servesCuisine": "Italian",
"acceptsReservations": true
}
How to Use These Examples
1. Copy the Code
Click the copy button to copy the example schema markup to your clipboard.
2. Customize Values
Replace the example values with your actual business information and content details.
3. Validate & Implement
Test your customized schema with Google's Rich Results Test before adding it to your website.