We are back with the 3rd and final part of the series on Schema Markup. If you haven’t got a chance to go through the previous two blogs in this series, we recommend to go through those first.
Let’s explore the final part of the series with the below schema. Please note that we have covered the most relevant schemas in these 3 part series. If you want to get a detailed idea about all the schemas, we recommend to go through Google developers insights. In this blog, we will cover following schemas.
Let’s explore each in detail following our format from previous blogs in the series where we understood the schema with an example and how the results are displayed on the search engines.
1. Local Business Schema:
Local business schema is a type of structured data specifically designed to help local businesses like to improve their visibility in search results, particularly for local searches performed by users in your area. It's like a digital business card that tells search engines exactly what your business is about, where you're located, and how to reach you.
Benefits of Local Business Schema:
**
-
Enhanced Search Visibility: **By providing detailed information about your local business, you increase the chances of appearing in relevant search results for local searches related to your products, services, or industry.
-
**Improved Click-through Rate (CTR): ** Rich snippets with essential information like contact details and operating hours can entice potential customers to visit your website or directly contact your business, potentially leading to increased website traffic and customer engagement.
Example
`
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"name": "Sun Solar Panels",
"description": "We offer quality services for installing solar panels across the city",
"url": "https://www.sunsolarpanels.com",
"telephone": "+14155551212",
"address": {
"@type": "PostalAddress",
"streetAddress": "123 Main Street",
"addressLocality": "Georgetown",
"addressRegion": "CA",
"postalCode": "12345",
"addressCountry": "US"
}
}
</script>
`
View in Search Engine Result
2. Q&A Schema:
Q&A schema, also known as Question and Answer Page schema, is a type of structured data used to highlight sections on your website where users can ask and answer questions. It's like creating a digital forum within your website and marking it up for search engines to understand and potentially display in search results.
Unlike FAQ schema, which focuses on predefined questions and answers provided by you, Q&A schema is specifically designed for user-generated content. This means the questions and answers displayed in rich snippets might come from various users on your platform.
Benefits of Q&A Schema:
**
-
Improved Search Visibility: ** By informing search engines about the question-and-answer nature of your content, you increase the chances of your website appearing in relevant search results for specific queries related to the questions addressed on your Q&A page.
-
** Enhanced User Engagement: ** Q&A schema can encourage user engagement by highlighting user-generated content and potentially attracting more users to participate in discussions on your platform.
Example
`
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "QAPage",
"mainEntity": {
"@type": "Question",
"name": "What are the benefits of installing solar panels?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Solar panels allows you to reduce your electricity bills and also benefits the
environment."
"author": {
"@type": "Person",
"name": "Julius Fernandez"
}
}
}
}
</script>
`
View in Search Engine Result
3. Carousel Schema:
Carousel schema is a type of structured data used to display a list of items in a horizontal, swipe able format within search results. It's like creating a digital carousel that showcases multiple items from your website on a single search result, potentially grabbing user attention and driving traffic.
Benefits of Carousel Schema
**
-
Improved Search Visibility: ** By informing search engines about the carousel nature of your content, you increase the chances of your website appearing in relevant search results for specific queries related to the items featured in your carousel.
-
** Increased Click-through Rate (CTR): ** Visually appealing carousel snippets with multiple items can entice users to click through and explore the full selection on your website, potentially leading to increased website traffic and engagement.
Example
`
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ItemList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"item": {
"@id": "https://www.sunsolarpanels.com/product/panel1",
"image": "https://www.sunsolarpanels.com/panel1.jpg",
"name": "Panel 1"
}
},
{
"@type": "ListItem",
"position": 2,
"item": {
"@id": "https://www.sunsolarpanels.com/product/panel2",
"image": "https://www.sunsolarpanels.com/panel2.jpg",
"name": "Panel 2"
}
},
{
"@type": "ListItem",
"position": 3,
"item": {
"@id": "https://www.sunsolarpanels.com/product/panel3",
"image": "https://www.sunsolarpanels.com/panel3.jpg",
"name": "Panel 3"
}
}
]
}
</script>
`
View in Search Engine Result
4. Profile Page Schema:
Profile Page schema is a relatively new type of structured data specifically designed to help websites ** showcase information about creators, organizations, or public figures. **It's like creating a digital calling card, providing search engines with clear details about the individual or entity represented on the page.
Benefits of Profile Page Schema
**
-
Improved Search Visibility:** By providing structured data about the profile, you can potentially increase its visibility in searches related to the person or organization's name, profession, or area of expertise.
-
**Enhanced Disambiguation: ** Profile page schema can help search engines distinguish between different entities with similar names, ensuring the correct information is displayed in search results.
Example
`
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ProfilePage",
"mainEntity": {
"@type": "Person",
"name": "Nisarg Shah",
"jobTitle": "Owner",
"image": "https://www.sunsolarpanels.com/nisarg-shah.jpg",
"url": "https://www.sunsolarpanels.com/nisarg-profile"
}
}
</script>
`
View in Search Engine Result
5. HowTo Schema
HowTo schema, also known as Instructional Procedure schema, is a type of structured data used to mark up step-by-step instructions on your website. It's like creating a digital roadmap for users, helping search engines understand and potentially display your content in rich search results with clear instructions.
Benefits of HowTo Schema
**
-
Improved Search Visibility: ** By informing search engines about the instructional nature of your content, you increase the chances of your webpage appearing in relevant search results for queries related to the task or process you describe.
-
**Enhanced User Experience: ** Clear and concise step-by-step instructions with visuals can improve user experience on your website, potentially leading to better task completion rates and increased user engagement.
Example
`
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "HowTo",
"name": "How to Change a Tire",
"description": "A step-by-step guide on changing a flat tire.",
"estimatedTime": "PT30M",
"step": [
{
"@type": "HowToStep",
"name": "Park your car on a level surface and engage the parking brake.",
"url": "https://www.example.com/howto-change-tire#step1"
},
{
"@type": "HowToStep",
"name": "Loosen the lug nuts on the flat tire slightly with the lug wrench.",
"url": "https://www.example.com/howto-change-tire#step2"
},
{
"@type": "HowToStep",
"name": "Use the car jack to lift the car until the flat tire is off the ground.",
"url": "https://www.example.com/howto-change-tire#step3"
}
],
"image": "https://www.example.com/changing-tire.jpg"
}
</script>
`
View in Search Engine Result
Conclusion
So, this concludes our 3 part series on schema markup. We understood the list of schema markups which are important for all the business irrespective of the industry they are in in Part 1. We understood the industry-specific schema markups in Part 2. Schema markup is an effective tool to use for your websites and should be included in order to achieve maximum results on the SERP. These markups increase the visibility of the websites and web pages eventually resulting in generating good traffic for the website.
Ask your digital marketing agency, to implement these today.