LocalBusiness
Schema for businesses with a physical location
LocalBusiness Schema
Ideal for: Physical stores, restaurants, offices and any business with a physical location.
Rich Result Features: Business name, address, phone, hours, price range and ratings in Google Maps and results.
Key Fields
- Business name, description and image
- Phone and email
- Full address (street, city, region, postal code, country)
- Geographic coordinates (latitude/longitude)
- Opening hours (by day of the week)
- Price range ($ to $$$$)
- Accepted payment methods
- Aggregate rating
- Cuisine type (for restaurants)
- Google Maps link
Templates
- Basic Local Business: Basic business information
- Restaurant: Specialized for restaurants with cuisine and menu
- Complete Local Business: All available fields
Code Examples
LocalBusiness Schema Example
json
{
"@context": "https://schema.org",
"@type": "Restaurant",
"name": "Restaurante El Buen Sabor",
"image": "https://restaurante.com/foto.jpg",
"telephone": "+34 91 123 4567",
"email": "[email protected]",
"address": {
"@type": "PostalAddress",
"streetAddress": "Calle Mayor 123",
"addressLocality": "Madrid",
"postalCode": "28001",
"addressCountry": "ES"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": "40.4168",
"longitude": "-3.7038"
},
"servesCuisine": ["Española", "Mediterránea"],
"priceRange": "$$",
"openingHoursSpecification": [
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"],
"opens": "12:00",
"closes": "23:00"
}
]
}