LocalBusiness Schema, also known as Schema.org LocalBusiness markup, is a type of structured data used on web pages that provides detailed and concise information about a business to search engines such as Google. This information can include the address, working hours, price range, menu, contact information, and more.
Local Business structured data helps pages appear in Local Search results and on Google Maps.
Here’s an example of basic Local Business structured data that a bookstore can use:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BookStore",
"name": "The Owl's Book Nest",
"address": {
"@type": "PostalAddress",
"streetAddress": "123 Feather Lane",
"addressLocality": "Owltown",
"addressRegion": "Whispering Woods",
"postalCode": "12345",
"addressCountry": "US"
},
"telephone": "+1234567890",
"openingHours": "Mo-Sa 10:00-18:00",
"url": "https://www.owlsbookneststore.com"
}
</script>