How to implement structured data for SEO
Welcome to Part 2 of The Beginner’s Guide to Structured Data: How to Implement Structured Data for SEO. In Part 1, we focused on gaining a high-level understanding of what structured data is and how it can be used to support SEO efforts.
(If you missed Part 1, you can go check it out here).
In Part 2, we’ll be looking at the steps to identify opportunities and implement structured data for SEO on your website. Since this is an introductory guide, I’ll be focusing on the most basic types of markup you can add and the most common use cases, and providing resources with additional detail for the more technical aspects of implementation.
Is structured data right for you?
Generally speaking, implementing structured data for SEO is worthwhile for most people. However, it does require a certain level of effort and resources, and you may be asking yourself whether it’s worth prioritizing.
Here are some signs that it’s a good time to prioritize structured data for SEO:
- Search is a key value-driving channel for your business
- You’ve recently audited your site for basic optimization issues and you know that you’ve achieved a competitive baseline with your keyword targeting, backlinks profile, site structure, and technical setup
- You’re in a competitive vertical and need your results to stand out in the SERPs
- You want to use AMP (Accelerated Mobile Pages) as a way to show up in featured areas of the SERP, including carousels
- You have a lot of article-style content related to key head terms (e.g. 10 chicken recipes) and you’d like a way to display multiple results for those terms in the SERP
- You’re ranking fairly well (position 15 or higher) already for terms with significant search volume (5000–50,000 searches/month)*
- You have solid development resources with availability on staff and can implement with minimal time and financial investment
- You’re in any of the following verticals: e-commerce, publishing, educational products, events/ticketing, creative production, TV/movie/book reviews, job listings, local business
*What is considered significant volume may vary according to how niche your market is.
If you said yes to any of these statements, then implementing structured data is particularly relevant to you! And if these criteria don’t currently apply to you, of course you can still go ahead and implement; you might have great results. The above are just a few of the most common indicators that it’s a worthwhile investment.
Implementing structured data on your site
In this guide, we will be looking solely at opportunities to implement Schema.org markup, as this is the most extensive vocabulary for our purposes. Also, because it was developed by the search engine companies themselves, it aligns with what they support now and should continue to be the most supported framework going forward.
How is Schema.org data structured?
The way that the Schema.org vocabulary is structured is with different “types” (Recipe, Product, Article, Person, Organization, etc.) that represent entities, kinds of data, and/or content types.
Each Type has its own set of “properties” that you can use to identify the attributes of that item. For example, a “Recipe” Type includes properties like “image,” “cookTime,” “nutritionInformation,” etc. When you mark up a recipe on your site with these properties, Google is able to present those details visually in the SERP, like this:
In order to mark up your content with Schema.org vocabulary, you’ll need to define the specific properties for the Type you’re indicating.
For example:
If you’re marking up a recipe page, you need to include the title and at least two other attributes. These could be properties like:
- aggregateRating: The averaged star rating of the recipe by your users
- author: The person who created the recipe
- prepTime: The length of time required to prepare the dish for cooking
- cookTime: The length of time required to cook the dish
- datePublished: Date of the article’s publication
- image: An image of the dish
- nutritionInformation: Number of calories in the dish
- review: A review of the dish
- ...and more.
Each Type has different “required” properties in order to work correctly, as well as additional properties you can include if relevant. (You can view a full list of the Recipe properties at Schema.org/Recipe, or check out Google’s overview of Recipe markup.)
Once you know what Types, properties and data need to be included in your markup, you can generate the code.
The code: Microdata vs JSON-LD
There are two common approaches to adding Schema.org markup to your pages: Microdata (in-line annotations added directly to the relevant HTML) and JSON-LD (which uses a Javascript script tag to insert the markup into the head of the page).
JSON-LD is Google’s recommended approach, and in general is a cleaner, simpler implementation... but it is worth noting that Bing does not yet officially support JSON-LD. Also, if you have a Wordpress site, you may be able to use a plugin (although be aware that not all of Wordpress' plugins work they way they’re supposed to, so it’s especially important to choose one with good reviews, and test thoroughly after implementation).
Whatever option you choose to use, always test your implementation to make sure Google is seeing it show up correctly.
What does this code look like?
Let’s look at an example of marking up a very simple news article (Schema.org/NewsArticle).
Here’s the article content (excluding body copy), with my notes about what each element is:
[posted by publisher ‘Google’] [headline]Article Headline [author byline]By John Doe [date published] Feb 5, 2015 [description] A most wonderful article [image] [company logo]
And here’s the basic HTML version of that article:
<div> <h2>Article headline</h2> <h3>By John Doe</h3> <div> <img src="https://google.com/thumbnai1.jpg"/> </div> <div> <img src="https://google.com/logo.jpg"/> </div>
If you use Microdata, you’ll nest your content inside the relevant meta tags for each piece of data. For this article example, your Microdata code might look like this (within the <body> of the page):
<div itemscope itemtype="https://schema.org/NewsArticle"> <meta itemscope itemprop="mainEntityOfPage" itemType="https://schema.org/WebPage" itemid="https://google.com/article"/> <h2 itemprop="headline">Article headline</h2> <h3 itemprop="author" itemscope itemtype="https://schema.org/Person"> By <span itemprop="name">John Doe</span> </h3> <span itemprop="description">A most wonderful article</span> <div itemprop="image" itemscope itemtype="https://schema.org/ImageObject"> <img src="https://google.com/thumbnail1.jpg"/> <meta itemprop="url" content="https://google.com/thumbnail1.jpg"> <meta itemprop="width" content="800"> <meta itemprop="height" content="800"> </div> <div itemprop="publisher" itemscope itemtype="https://schema.org/Organization"> <div itemprop="logo" itemscope itemtype="https://schema.org/ImageObject"> <img src="https://google.com/logo.jpg"/> <meta itemprop="url" content="https://google.com/logo.jpg"> <meta itemprop="width" content="600"> <meta itemprop="height" content="60"> </div> <meta itemprop="name" content="Google"> </div> <meta itemprop="datePublished" content="2015-02-05T08:00:00+08:00"/> <meta itemprop="dateModified" content="2015-02-05T09:20:00+08:00"/> </div>
The JSON-LD version would usually be added to the <head> of the page, rather than integrated with the <body> content (although adding it in the <body> is still valid).
JSON-LD code for this same article would look like this:
<script type="application/ld+json"> { "@context": "https://schema.org", "@type": "NewsArticle", "mainEntityOfPage": { "@type": "WebPage", "@id": "https://google.com/article" }, "headline": "Article headline", "image": { "@type": "ImageObject", "url": "https://google.com/thumbnail1.jpg", "height": 800, "width": 800 }, "datePublished": "2015-02-05T08:00:00+08:00", "dateModified": "2015-02-05T09:20:00+08:00", "author": { "@type": "Person", "name": "John Doe" }, "publisher": { "@type": "Organization", "name": "Google", "logo": { "@type": "ImageObject", "url": "https://google.com/logo.jpg", "width": 600, "height": 60 } }, "description": "A most wonderful article" } </script>
This is the general style for Microdata and JSON-LD code (for Schema.org/Article). The Schema.org website has a full list of every supported Type and its Properties, and Google has created “feature guides” with example code for the most common structured data use cases, which you can use as a reference for your own code.
How to identify structured data opportunities (and issues)
If structured data has previously been added to your site (or if you’re not sure whether it has), the first place to check is the Structured Data Report in Google Search Console.
This report will tell you not only how many pages have been identified as containing structured data (and how many of these have errors), but may also be able to identify where and/or why the error is occurring. You can also use the Structured Data Testing Tool for debugging any flagged errors: as you edit the code in the tool interface, it will flag any errors or warnings.
If you don’t have structured data implemented yet, or want to overhaul your setup from scratch, the best way to identify opportunities is with a quick content audit of your site, based on the kind of business you have.
A note on keeping it simple
There are lots of options when it comes to Schema.org markup, and it can be tempting to go crazy marking up everything you possibly can. But best practice is to keep focused and generally use a single top-level Type on a given page. In other words, you might include review data on your product page, but the primary Type you’d be using is Schema.org/Product. The goal is to tell search engines what this page is about.
Structured data must be representative of the main content of the page, and marked up content should not be hidden from the user. Google will penalize sites which they believe are using structured data markup in scammy ways.
There are some other general guidelines from Google, including:
- Add your markup to the page it describes (so Product markup would be added to the individual product page, not the homepage)
- For duplicated pages with a canonical version, add the same markup to all versions of the page (not just the canonical)
- Don’t block your marked-up pages from search engines
- Be as specific as possible when choosing a Type to add to a page
- Multiple entities on the same page must each be marked up individually (so for a list of products, each product should have its own Product markup added)
- As a rule, you should only be adding markup for content which is being shown on the page you add it to
So how do you know which Schema.org Types are relevant for your site? That depends on the type of business and website you run.
Schema.org for websites in general
There are certain types of Schema.org markup which almost any business can benefit from, and there are also more specific use cases for certain types of business.
General opportunities to be aware of are:
- Organization: use Organization markup on your homepage to indicate that your website is a brand site.
- Knowledge Graph content: brand information (logo, social profiles) as well as your business mailing address, and corporate contact info (like phone numbers) can be marked up on the homepage and appear in a Knowledge Graph box in branded search:
- Sitelinks Search Box: if you have search functionality on your site, you can add markup which enables a search box to appear in your sitelinks:
- Breadcrumbs: get breadcrumbs in the SERP:
- VideoObject: if you have video content on your site, this markup can enable video snippets in SERPs, with info about uploader, duration, a thumbnail image, and more:
A note about Star reviews in the SERP
You’ll often see recommendations about “marking up your reviews” to get star ratings in the SERP results. “Reviews” have their own type, Schema.org/Review, with properties that you’ll need to include; but they can also be embedded into other types using that type’s “review” property.
You can see an example of this above, in the Recipes image, where some of the recipes in the SERP display a star rating. This is because they have included the aggregate user rating for that recipe in the “review” property within the Schema.org/Recipe type.
You’ll see a similar implementation for other properties which have their own type, such as Schema.org/Duration, Schema.org/Date, and Schema.org/Person. It can feel really complicated, but it’s actually just about organizing your information in terms of category > subcategory > discrete object.
If this feels a little confusing, it might help to think about it in terms of how we define a physical thing, like an ingredient in a recipe. Chicken broth is a dish that you can make, and each food item that goes into making the chicken broth would be classified as an ingredient. But you could also have a recipe that calls for chicken broth as an ingredient. So depending on whether you’re writing out a recipe for chicken broth, or a recipe that includes chicken broth, you’ll classify it differently.
In the same way, attributes like “Review,” “Date,” and “Duration” can be their own thing (Type), or a property of another Type. This is just something to be aware of when you start implementing this kind of markup. So when it comes to “markup for reviews,” unless the page itself is primarily a review of something, you’ll usually want to implement Review markup as a property of the primary Type for the page.
In addition to this generally applicable markup, there are certain Schema.org Types which are particularly helpful for specific kinds of businesses:
- E-commerce
- including online course providers
- Recipes Sites
- Publishers
- Events/Ticketing Sites
- including educational institutions which offer courses
- Local Businesses
- Specific Industries (small business and larger organizations)
- Creative Producers
Schema.org for e-commerce
If you have an e-commerce site, you’ll want to check out:
- Product: this allows you to display product information, such as price, in the search result. You can use this markup on an individual product page, or an aggregator page which shows information about different sellers offering an individual product.
- Online Courses: If your product is an online course, you can use the Schema.org/Course type to get more specific snippets.
- Offer: this can be combined with Schema.org/Product to show a special offer on your product (and encourage higher CTRs).
- Review: if your site has product reviews, you can aggregate the star ratings for each individual product and display it in the SERP for that product page, using Schema.org/aggregateRating.
Things to watch out for…
- Product markup is designed for individual products, not lists of products. If you have a category page and want to mark it up, you’ll need to mark up each individual product on the page with its own data.
- Review markup is designed for reviews of specific items, goods, services, and organizations. You can mark up your site with reviews of your business, but you should do this on the homepage as part of your organization markup.
- If you are marking up reviews, they must be generated by your site, rather than via a third-party source.
- Course markup should not be used for how-to content, or for general lectures which do not include a curriculum, specific outcomes, or a set student list.
Schema.org for recipes sites
For sites that publish a lot of recipe content, Recipe markup is a fantastic way to add additional context to your recipe pages and get a lot of visual impact in the SERPs.
Things to watch out for…
If you’re implementing Recipe Rich Cards, you’ll want to be aware of some extra guidelines:
- You’ll have to build AMP versions of your recipes pages
- If you want to have a host carousel/list with multiple recipes for the same keyword, you must have a summary page that lists all the recipes in that collection (e.g. “chicken recipes”), and use ItemList markup to summarize recipes.
- See Mark Up Your Lists for more detail on this.
Schema.org for publishers
If you have an publisher site, you’ll want to check out the following:
- Article and its subtypes,
- NewsArticle: this indicates that the content is a news article
- BlogPosting: similar to Article and NewsArticle, but specifies that the content is a blog post
- Fact Check: If your site reviews or discusses “claims made by others,” as Google diplomatically puts it, you can add a “fact check” to your snippet using the Schema.org/ClaimReview.
- CriticReview: if your site offers critic-written reviews of local businesses (such as a restaurant critic’s review), books, and /or movies, you can mark these up with Schema.org/CriticReview.
- Note that this is a feature being tested, and is a knowledge box feature rather than a rich snippet enhancement of your own search result.
Things to watch out for...
- If you use AMP (Accelerated Mobile Pages) or are considering implementing this feature, you’ll need to a) make sure you include structured data on your AMP versions, and b) you’ll need Articles markup on your canonical version if you want to make it into the Top Stories AMP carousel.
- Google has some additional guidelines around accessibility for Articles (pagination, canonicalization, restricted content, and First Click Free).
Schema.org for events/ticketing sites
If your business hosts or lists events, and/or sells tickets, you can use:
- Events: you can mark up your events pages with Schema.org/Event and get your event details listed in the SERP, both in a regular search result and as instant answers at the top of the SERP:
- Courses: If your event is a course (i.e., instructor-led with a student roster), you can also use Schema.org/Course markup.
Things to watch out for...
- Don’t use Events markup to mark up time-bound non-events like travel packages or business hours.
- As with products and recipes, don’t mark up multiple events listed on a page with a single usage of Event markup.
- For a single event running over several days, you should mark this up as an individual event and make sure you indicate start and end dates;
- For an event series, with multiple connected events running over time, mark up each individual event separately.
- Course markup should not be used for how-to content, or for general events/lectures which do not include a curriculum, specific outcomes, and an enrolled student list.
Schema.org for job sites
If your site offers job listings, you can use Schema.org/JobPosting markup to appear in Google’s new Jobs listing feature:
Note that this is a Google aggregator feature, rather than a rich snippet enhancement of your own result (like Google Flights).
Things to watch out for...
- Mark up each job post individually, and do not mark up a jobs listings page.
- Include your job posts in your sitemap, and update your sitemap at least once daily.
- You can include Review markup if you have review data about the employer advertising the job.
Schema.org for local businesses
If you have a local business or a store with a brick-and-mortar location (or locations), you can use structured data markup on your homepage and contact page to help flag your location for Maps data as well as note your “local” status:
- LocalBusiness: this allows you to specify things like your opening hours and payment accepted
- PostalAddress: this is a good supplement to getting all those NAP citations consistent
- OrderAction and ReservationAction: if users can place orders or book reservations on your website, you may want to add action markup as well.
You should also get set up with GoogleMyBusiness.
☆ Additional resources for local business markup
Here’s an article from Whitespark specifically about using Schema.org markup and JSON-LD for local businesses, and another from Phil Rozek about choosing the right Schema.org Type. For further advice on local optimization, check out the local SEO learning center and this recent post about common pitfalls.
Schema.org for specific industries
There are certain industries and/or types of organization which get specific Schema.org types, because they have a very individual set of data that they need to specify. You can implement these Types on the homepage of your website, along with your Brand Information.
These include LocalBusiness Types:
- AnimalShelter
- AutomotiveBusiness
- ChildCare
- Dentist
- DryCleaningOrLaundry
- EmergencyService
- EmploymentAgency
- EntertainmentBusiness
- FinancialService
- FoodEstablishment
- GovernmentOffice
- HealthAndBeautyBusiness
- HomeAndConstructionBusiness
- InternetCafe
- LegalService
- Library
- LodgingBusiness
- ProfessionalService
- RadioStation
- RealEstateAgent
- RecyclingCenter
- SelfStorage
- ShoppingCenter
- SportsActivityLocation
- Store
- TelevisionStation
- TouristInformationCenter
- TravelAgency
And a few larger organizations, such as:
- Airline
- Corporation
- EducationalOrganization
- GovernmentOrganization
- LocalBusiness
- MedicalOrganization
- NGO
- PerformingGroup
- SportsOrganization
Things to watch out for…
- When you’re adding markup that describes your business as a whole, it might seem like you should add that markup to every page on the site. However, best practice is to add this markup only to the homepage.
Schema.org for creative producers
If you create a product or type of content which could be considered a “creative work” (e.g. content produced for reading, viewing, listening, or other consumption), you can use CreativeWork markup.
More specific types within CreativeWork include:
- Book
- Course
- Episode
- Game
- Movie
- MusicComposition
- MusicPlaylist
- MusicRecording
- Painting
- Photograph
- Sculpture
- SoftwareApplication
- TVSeason
- TVSeries
- VisualArtwork
- ...and several others.
Schema.org new features (limited availability)
Google is always developing new SERP features to test, and you can participate in the testing for some of these. For some, the feature is an addition to an existing Type; for others, it is only being offered as part of a limited test group. At the time of this writing, these are some of the new features being tested:
- Actions
- Books
- Podcasts
- Datasets
- Music
- Software Apps
- Top Places Lists (Publishers)
- Live Coverage(Publishers)
Structured data beyond SEO
As mentioned in Part 1 of this guide, structured data can be useful for other marketing channels as well, including:
- Social Cards
- Email markup
- AdWords
For more detail on this, see the section in Part 1 titled: “Common Uses for Structured Data.”
How to generate and test your structured data implementation
Once you’ve decided which Schema.org Types are relevant to you, you’ll want to add the markup to your site. If you need help generating the code, you may find Google’s Data Highlighter tool useful. You can also try this tool from Joe Hall. Note that these tools are limited to a handful of Schema.org Types.
After you generate the markup, you’ll want to test it at two stages of the implementation using the Structured Data Testing Tool from Google — first, before you add it to the site, and then again once it’s live. In that pre-implementation test, you’ll be able to see any errors or issues with the code and correct before adding it to the site. Afterwards, you’ll want to test again to make sure that nothing went wrong in the implementation.
In addition to the Google tools listed above, you should also test your implementation with Bing’s Markup Validator tool and (if applicable) the Yandex structured data validator tool. Bing’s tool can only be used with a URL, but Yandex’s tool will validate a URL or a code snippet, like Google’s SDT tool.
You can also check out Aaron Bradley’s roundup of Structured Data Markup Visualization, Validation, and Testing Tools for more options.
Once you have live structured data on your site, you’ll also want to regularly check the Structured Data Report in Google Search Console, to ensure that your implementation is still working correctly.
Common mistakes in Schema.org structured data implementation
When implementing Schema.org on your site, there are a few things you’ll want to be extra careful about. Marking up content with irrelevant or incorrect Schema.org Types looks spammy, and can result in a “spammy structured markup” penalty from Google. Here are a few of the most common mistakes people make with their Schema.org markup implementation:
Mishandling multiple entities
Marking up categories or lists of items (Products, Recipes, etc) or anything that isn’t a specific item with markup for a single entity
- Recipe and Product markup are designed for individual recipes and products, not for listings pages with multiple recipes or products on a single page. If you have multiple entities on a single page, mark up each item individually with the relevant markup.
Misapplying Recipes markup
Using Recipe markup for something that isn’t food
- Recipe markup should only be used for content about preparing food. Other types of content, such as "diy skin treatment” or "date night ideas," are not valid names for a dish.
Misapplying Reviews and Ratings markup
Using Review markup to display “name” content which is not a reviewer’s name or aggregate rating
- If your markup includes a single review, the reviewer’s name must be an actual organization or person. Other types of content, like "50% off ingredients," are considered invalid data to include in the “name” property.
Adding your overall business rating with aggregateRating markup across all pages on your site
- If your business has reviews with an aggregateRating score, this can be included in the “review” property on your Organization or LocalBusiness.
Using overall service score as a product review score
- The “review” property in Schema.org/Product is only for reviews of that specific product. Don’t combine all product or business ratings and include those in this property.
Marking up third-party reviews of local businesses with Schema.org markup
- You should not use structured data markup on reviews which are generated via third-party sites. While these reviews are fine to have on your site, they should not be used for generating rich snippets. The only UGC review content you should mark up is reviews which are displayed on your website, and generated there by your users.
- This is a relatively recent update to the guidelines.
General errors
Using organization markup on multiple pages/pages other than the homepage
- It might seem counter-intuitive, but organization and LocalBusiness markup should only be used on the pages which are actually about your business (e.g. homepage, about page, and/or contact page).
Improper nesting
- This is why it’s important to validate your code before implementing. Especially if you’re using Microdata tags, you need to make sure that the nesting of attributes and tags is done correctly.
So there you have it — a beginner’s guide to understanding and implementing structured data for SEO! There’s so much to learn around this topic that a single article or guide can’t cover everything, but if you’ve made it to the end of this series you should have a pretty good understanding of how structured data can help you with SEO and other marketing efforts. Happy implementing!
How was this guide for you? Are you feeling more confident about implementing structured data on your own site? Did this guide answer any questions you were wondering about, or maybe give you some new insight into how to think about structured data for your website? I’d love to hear your thoughts here in the comments.
What a brilliant blog post it is I ever read in detail about such kind of topic i.e. structured data. I read this completely but it seems I need to read it again to get more benefits from it since it has included lots of info with it. Thanks for sharing this awesome guide.
Thanks Pratibha! Glad you found it useful :) yes, it's a pretty dense topic although hopefully you'll find that the principles are fairly straightforward once you get your head around it!
Yes Bridget, It's not an easy topic to understand seamlessly but the way you have written it quite interesting. Thanks for your response.
Hi Bridget
Obviously the use of structured data requires time and dedication, but the results are sure to be even better able to perform conversions
Best breakdown of implementing Schema I've seen (although I do like Whitespark's as well). Thanks for explaining the difference between Microdata and JSON-LD also!
Loved the guide Bridget! And thank you for covering the "stars" schema. Very well done, easy to understand, and comprehensively written.
Good post Bridget !!
I think it is very important to implement microdata on our websites. I recently started using them and I still make some mistakes but soon we will be 100% !!
Hi Bridget, I love your two-part articles on structured data! I'm starting to get used to structured date, but I still wonder HOW MUCH IS TOO MUCH structured data on any one site? I keep being scared of having duplicates in different JSON scripts.
Structured data is so complex to understand at times, and can be very time consuming. Should I even bother implementing structured data on a low-rank, or a niche website that can't rank in rich cards? Also, anybody has a kind of template of structured data that works for most small business?
What a guide! Worth spending time, most definitely! Lately I was going to build some kind of schema's guide for my team, but now I see maybe it is better to give them a link to your article.
This guide was a little intimidating to me. I was expecting structured data to be more generally cast with constructors, inheritance of fields like object oriented programming. I can see this with the Schema.org Types and properties but what I was really hoping for a turnkey app or choice of apps that have a visual construction / display of the types and properties used. Maybe it would even have a pull down menu of available options. Then I would hope that this app would create a ready to use snippet that Google could just find and process. I am still a big fan of structured data conceptually but I am going to need to do more research for how it applies to me.
Ah yes it can feel a little overwhelming and somewhat manual to implement. There are some tools which can help with generating the code snippets (the Data Highlighter tool from Google and Joe Hall's JSON-LD generator are two that I mentioned in the article), and there are Wordpress plugins which can do some of the heavy lifting (although I don't have personal experience with those so I'm not qualified to recommend specific ones). And the Google resources and Schema.org pages (linked to here for each Type I mentioned) provide example code for RDFa, Microdata and JSON-LD implementations which you can refer to when writing your own code. But unfortunately I'm not aware of a comprehensive app like the one you describe (although I would love to hear about it if one exists!!).
Hi Bridget, nice second part, it has quite useful tricks here and there :)
Question: have you seen any Google actions or penalties in webs that applied structured data in a spammy or scammy way? Because I've seen some of them in Spanish SERPs (for example, implementing fake reviews to have stars) and they don't look like they're going to be penalized by Google.
Thank you again for that post!
I have a site, and it is ranking fairly well, so I think it's a good time to prioritize structured data for SEO.
As here is mentioned lots of information in this article, so I need to understand it deeply by reading it again and again. BTW Thanks for this valuable article.
Hey Bridget!
Great second part. It seems to be comprehensive and covers all aspects of implementation of structured data. Quite a few examples have made it simpler in understanding all different microdata and purposes. Just one question, how to make sure that it is not being overdone or fall under spam?
Thank you for the informative post and for answer to my question (in anticipation).
As per Part 1... thank you so much.
This is the first place where I've read the proper implementation of the Structured data. I know most of the theory (what is it good for etc.) but how to implement it step by step was kept in secret. Thanks for sharing.
Hello, thanks to your article I was able to implement the Sitelinks Search Box on my site.
Thank you very much.
Brilliant guide to structured data. I would love to see some examples or step-by-step guides how to do it properly. Thank you so much.
Hi all, this is s wonderful post about structured data, and about knowledge graph also explained properly, well now I come to my findings, we can integrate social media schema in our website or blogs, it will help social media links appear in knowledge graph, same manner I have come across several instances as rather than Google plus page data or website information, sometimes Wiki info related to the specific search topic along with related social media links also being displayed in Google search, in this context anyone can explain the relevance of Schema, Microdata, RDFa or JSON.
I've typically seen a sizable bump in traffic because of CTR boosts from Product markup — have you seen the same for Offers on 'sales' type pages? I'm curious to test it out, but haven't been able to find a lot of results where rich data is actually appearing in the SERPs.
Hi Austin, I don't have personal experience with Offers markup but would love to hear if anyone else has data on this!
Another great Schema guide - thanks Bridget. I've sometimes got a bit daunted by picking the LocalBusiness type - worried that it's not quite enough of a match, and that I might be setting the company up for a miscategorisation penalty of some kind.
I like to kind of 'map' page types to schema - what data do i have, where is it, and which schema properties do they align with. That usually helps me visualise before doing an implementation.
Thanks again for two great articles :)
Hi Andrew, yep it can definitely be a little intimidating! My general rule of thumb would be to avoid LocalBusiness markup if you don't have a physical location which customers can visit (or a geographic service area, like a plumber). That doesn't necessarily mean you can't have clients who you meet with virtually, but just if they wanted to visit you, do you have an office space.
Even if you don't, you can still mark up your business contact info for the Knowledge Graph branded results.
Love your comment around mapping page types, that's a great way to do it. I actually touched on this approach in an older blog post I wrote for Distilled's blog: https://www.distilled.net/resources/how-to-audit-a...
Glad you enjoyed the series! :)
Great series of posts on structured data. Structured data is gaining in importance day by day and JSON-LD is almost a necessity in case you decide to implement AMP.
It would have been even more informative if you had given examples of implementation using JSON-LD for different categories of businesses because this version of implementation is gradually becoming the most important format of implementation.
Now there are many small business like web design and graphic design firms as well as online marketing agencies and small companies that although small and have one or two offices operate much beyond their local area and sometimes have clients from many countries in the world. They are not corporations as they are small but not "local businesses" like a restaurant or a dentist.
What type of schema implementation would you recommend for such type of business which is small in size but caters to clients worldwide?
Hi Joseph, glad you've found it useful! If you click through the linked resource for each type of schema, you'll be able to see implementation examples using JSON-LD.
For SEO purposes, a local business refers to a business which has a restricted service area, whether that means a brick and mortar storefront or a mobile service (like a plumber) which serves a localized area. That said, if you have an office where you meet with clients, you could try using the https://schema.org/ProfessionalService markup (which is technically classed under the LocalBusiness Schema.org in terms of hierarchy).
For an online marketing agency, you could also use Schema.org for:
I'm sure there are others that could work depending on your specific work and business, but those are some off the top of my head.
Hi Dear BridgetThanks for sharing... Schema, the need of every business website especially for product based businesses for enhancing CTR and product sales.
Great Post Brdiget!
Quick question regarding the third party reviews. It s not 100% clear to me if i can mark up reviews that i collect via a third party but that are actually published on my site. Could you clarify that?
Thanks,
Alessio
Hi Alessio, you will be contravening Google's guidelines if you markup reviews collected via third party sites even if you re-publish those reviews on your own website.
Thanks Bridget, great post :) There's a lot of similar articles going around at the moment about structured data, so it much very much be in fashion at the moment! This is one of the most in-depth ones though, so thanks for taking the time out to go into so much detail and making it very easy to follow!
Awesome info. Bridget !! it will help to many webmasters, thank for your efforts to create lovely post, technically sounds good. we must have to update schema code in our site to get the benefits in search results.
Thank you for sharing such a good post. I always recommend my clients to use JSON-LD because it helps in getting more traffic from search engines and helps in the quality lead generation. Some of my clients are getting 10s of leads per day just by using the schema correctly on their website.
Hi Bridget,
Can you clarify this section for me, please?
"Using organization markup on multiple pages/pages other than the homepage
It sounds in the first line like organization markup should be implemented on only one page, but in the bullet point it sounds like org markup is ok to use on multiple pages as long as those pages are about the company itself. Should I limit to homepage only, or can I use org markup on the about and contact pages, too?
Thank you!
Hi Bridget,
Thank you so much for detailed blog about structured data. I am waiting for your another blog with new examples which is not covered here.
Hi Krishnakumar, this was the final post in this series. Was there a specific example you were looking for which wasn't included here? Note that each Type I mentioned in the post links to a resource with at least one JSON-LD example and some of them also have Microdata and RDFa examples as well.
Hi Bridget,
I need Organization type's example, how it looks like in Search Engine SERP?