3 Great Ways to Use Structured Data For Local SEO

 

Schema.org brought about a revolutionary collaboration between the world’s top search engines to create a method that made it easier to categorize and identify important information on websites. However, local businesses are largely behind when it comes to adopting current web design and SEO practices.

As this TechCrunch article pointed out, “Only 25% of U.S. local businesses have websites and just 10% show their prices online.” Local businesses that want to utilize the internet to get more customers should implement Schema Markup, as it allows search engines to display important information, such as hours, testimonials, reviews, and even menus easily in search results.

Geographic Markup

map1

Making sure a business’ geographic and contact information is listed correctly on their website should be the first step when it comes to implementing schema onto a website. The Local Business section of Schema.org has a variety of categories that businesses can implement as part of the footer or contact page of their website, including address, phone, fax, operating hours, and even accepted payment types.

The schema markup is displayed via div tags and isn’t displayed on the live version of the website. The div tags designate the information that applies to the chosen schema markup:

<div =”https://schema.org/Attorney”>
<span =”name”>ABC Attorneys</span>
<div =”address” =”https://schema.org/PostalAddress”>
<span =”streetAddress”>123 Main Street</span>
<span =”addressLocality”>Malibu</span>,
<span =”addressRegion”>CA</span>
<span =”postalCode”>90263</span>
</div>
Phone: <span =”telephone”>555-423-2352</span>
<a href=”https://googlemapsurl.com” =”maps”>URL of Map</a>
</div>

In this example for an Attorney’s office, the only information that is displayed on the public-facing side of the website is the information between the span and div tags. Visitors won’t be able to tell that a business is using schema unless they view the source code of the website.

The ‘’ in the span tag identifies the schema markup property for that piece of information. All available properties are shown on Schema.org in their applicable category.

You can also use “geo” and “hasMap” markups to add to your Geographic structured data. This packs a punch!

Reviews and Testimonials

price-range-reviews

Reviews on sites like Yelp, Google, Bing, and UrbanSpoon help local businesses get more exposure and build their online credibility. A 2012 study published on Search Engine Land shows that 72% of consumers trust online reviews as much as personal recommendations. Using schema in tandem with in-site reviews and testimonials helps search engines find the information quickly and display reviews of a company’s product and services on search engine results pages:

<div =”review” =”https://schema.org/Review”>
<span =”name”>Value purchase</span> –
by <span =”author”>Lucas</span>,
<meta =”datePublished” content=”2011-03-25″>March 25, 2011
<div =”reviewRating” =”https://schema.org/Rating”>
<meta =”worstRating” content = “1”/>
<span =”ratingValue”>4</span>/
<span =”bestRating”>5</span>stars
</div>

<span =”description”>Great microwave for the price. It is small and fits in my apartment.</span>

</div>

(example from schema.org)

In addition to using schema to designate on-site reviews and testimonials, local business websites should also identify links to their online review pages on the sites mentioned above, like Yelp and UrbanSpoon. Having links to these profiles on the local business website will help them get indexed faster.

Events

schema_events-

Many local businesses struggle publicizing their events. Using schema to identify events helps search engines display them in search results. Schema.org has sections for sporting events and then events by other businesses. The other events can also be boiled down even further to different types of events, such as festivals, comedy, food, music, and more. Using the most specific markup possible can help get better display results.

Here is an example of a music festival schema:

<div =”https://schema.org/Event”>
<a =”url” href=”www.url.com”><span =”name”>Music Festival<span></a><div =”description”>Featuring 100 different artists</div>
<meta =”startDate” content=”2013-05-05T”> Starts: at 2:00 pm
<meta =”endDate” content=”2013-05-06T”>Ends:   10:00 pm
<div =”location” =”https://schema.org/Place”>
<a =”url” href=”www.URL.com”>Central Ampitheater</a> <div =”address” =”https://schema.org/PostalAddress”><span =”addressLocality”>Orlando</span>, <span =”addressRegion”>FL</span></div></div>
<div =”offers” =”https://schema.org/AggregateOffer”><span =”lowPrice”>$25</span> – <span =”highPrice”>$250</span>
</div>
</div>

Using schema on all events, including workshops, meetings, and more, can help them be found more easily in search results relating to local events in the area, such as a search for “concerts Chicago, IL” Having schema in place for your business’ concerts in Chicago, IL can help get them on the search results for this query.

 

Form Generators & Testing Tools

testing

Creating custom schema markup for a local business website doesn’t have to be difficult. There are several form generators that will generate the code automatically, after the user chooses their categories and properties:

This is good news for developers because implementations in JSON-LD are much less likely to result in syntax errors.”

~Eric Enge

In summary, business websites will be more easily found in the search results simply by implementing the proper schema markup. In the end, search engines and website owners want the same thing — to make information easier to find for the users who are searching for it.