What does Google say about SEO? /
Quick SEO Quiz

Test your SEO knowledge in 5 questions

Less than a minute. Find out how much you really know about Google search.

🕒 ~1 min 🎯 5 questions

Official statement

Google does not plan to ignore Microdata, but the trend shows that new features in structured data are often released in JSON-LD rather than Microdata.
21:10
🎥 Source video

Extracted from a Google Search Central video

⏱ 56:05 💬 EN 📅 01/12/2016 ✂ 15 statements
Watch on YouTube (21:10) →
Other statements from this video 14
  1. 4:38 Comment Google rétablit-il le classement d'un site après levée d'une pénalité manuelle ?
  2. 5:40 Pourquoi Google réécrit-il vos title tags et comment l'empêcher ?
  3. 10:48 RankBrain impacte-t-il vraiment le classement ou juste la compréhension des requêtes ?
  4. 14:00 Les signaux utilisateur influencent-ils vraiment le classement Google ?
  5. 17:20 Faut-il vraiment utiliser l'attribut TITLE sur vos images ?
  6. 29:20 Les commentaires de bots comptent-ils dans le ranking des forums ?
  7. 33:20 Les pages AMP bénéficient-elles vraiment d'un avantage de classement dans Google ?
  8. 39:40 Faut-il vraiment s'inquiéter du crawl Google sur les pages 404 supprimées ?
  9. 43:00 Google suit-il vraiment vos liens JavaScript ?
  10. 51:00 Les redirections 301 imposent-elles vraiment l'URL canonique à Google ?
  11. 58:40 Faut-il vraiment renvoyer un 503 lors d'un déménagement de serveur ?
  12. 67:40 La position moyenne dans la Search Console ment-elle sur vos performances réelles ?
  13. 80:20 Les tests A/B par cookie switching sont-ils vraiment exempts de risque de pénalité cloaking ?
  14. 90:40 Faut-il craindre une sanction pour un balisage Event mal utilisé ?
📅
Official statement from (9 years ago)
TL;DR

Google confirms that Microdata will not be abandoned, but most new features in structured data are now released in JSON-LD. For SEO, this means prioritizing JSON-LD for new projects while maintaining Microdata on existing sites if everything is functioning well. The goal is to anticipate future developments rather than react when a feature is lacking in your current format.

What you need to understand

Why does Google favor JSON-LD without eliminating Microdata?

Mueller's statement sets a clear framework: Microdata remains technically supported, but Google is investing its development resources in JSON-LD. This is a gradual transition strategy rather than a sudden break.

In practice, the old types of schema.org continue to function in Microdata. Classic rich snippets (reviews, FAQs, recipes) will not disappear overnight. But when Google launches a new format—such as HowTo, extended Q&As, or features specific to certain verticals—the documentation is first released in JSON-LD, sometimes exclusively in JSON-LD.

What is the technical difference between these two formats?

Microdata embeds directly into HTML: you add itemscope and itemprop attributes to your existing tags. The markup lives right in the visible code. JSON-LD, on the other hand, is placed in a separate script type="application/ld+json" block, often in the head or at the end of the body.

For a developer, JSON-LD simplifies maintenance: there’s no need to touch the markup to add or modify structured data. For Google, parsing clean JSON is more reliable than sifting through a sometimes fragile DOM. This separation of layers explains why new features come out in this format.

Is there a risk that sites using Microdata will lose traffic?

No, not immediately. No signal of lost rich snippets has been observed on sites running pure Microdata. Google continues to read and utilize these tags for classic schema types.

The risk lies elsewhere: you might miss an opportunity if a new feature is released only in JSON-LD. For example, a competitor who quickly adopts an emerging feature gains a visual advantage in the SERPs. Meanwhile, you’re waiting for Google to deign to publish the Microdata version... which may never arrive.

  • Microdata remains supported for existing and widely deployed schema.org types
  • JSON-LD becomes the de facto standard for any new structured data
  • No urgent migration if your current implementation works, but anticipate changes for new projects
  • Technical compatibility does not guarantee access to new features: this is the key nuance in Mueller's statement
  • Google's documentation now shows JSON-LD first, with Microdata as an option when it is still offered

SEO Expert opinion

Is this statement consistent with practices observed in the field?

Absolutely. It has been evident for several years that Google's official examples favor JSON-LD. New verticals (live event markup, specific job offers, certain types of enriched products) are released with exclusive JSON-LD documentation. Microdata no longer appears in recent guidelines.

What's interesting is that Mueller does not say "we will deprecate Microdata". He simply states that innovation is happening elsewhere. This reflects a form of planned obsolescence through neglect rather than prohibition. For a practitioner, this changes everything: you lose nothing today, but you risk missing the boat tomorrow.

What nuances should be considered regarding this position?

The first nuance: JSON-LD isn't magic. I’ve seen disastrous implementations where the JSON did not accurately reflect the actual content of the page, simply because it was easy to generate a blob of data disconnected from the DOM. Google can ignore or devalue structured data that contradicts visible content.

The second nuance: not all CMSs manage JSON-LD natively. Some old or custom systems have Microdata deeply integrated. Migrating can be costly in development. In this case, [To be verified] if the ROI justifies the immediate overhaul or if you wait for the next development cycle. No need to panic, but a 12-24 month plan seems reasonable.

In what cases does this rule not strictly apply?

If you’re running a legacy site with stable Microdata markup for years and successfully capturing rich snippets, not changing a thing may be the best strategy. Changing just for the sake of change introduces regression risk.

However, for a new project or a redesign, going directly with JSON-LD is a no-brainer. You align yourself with Google’s roadmap and make life easier for your developers. Special case: e-commerce platforms where product markup is critical. Here, JSON-LD allows for dynamic updates (stock, price) without touching the HTML template, which greatly simplifies management.

Caution: never double up formats on the same page (JSON-LD + Microdata for the same object). Google may get confused and arbitrarily choose one, or even ignore both. If you migrate, do so cleanly by removing the old markup.

Practical impact and recommendations

What should be done practically for an existing site?

First, audit your current implementation: use Search Console, Google's rich results testing tool, and a schema.org validator. Identify which types of markup you use and in what format. If everything is in Microdata and your rich snippets are showing, you're not in urgency.

Next, prioritize new pages or sections. A blog launching an FAQ section? Implement directly in JSON-LD. A product page that requires complex enriched data (variants, availability, reviews)? JSON-LD will be more maintainable. You progressively migrate without disrupting what's already working.

What mistakes should be avoided during a migration to JSON-LD?

Classic error: generating JSON-LD automatically without checking consistency with visible content. Google compares the two. If your JSON says "in stock" while the page shows "out of stock", you lose the algorithm's trust. Each structured data point must reflect the reality of the DOM.

Another pitfall: forgetting to remove the old Microdata after adding JSON-LD. You end up with two competing markups. Google may choose one, the other, or ignore both. Test in a development environment, validate, then clean up properly in production. And most importantly, don't neglect post-deployment testing: Search Console sometimes takes several days to detect changes.

How can I verify that my JSON-LD implementation is correct?

Run each relevant page through Google's rich results testing tool. Prioritize fixing any blocking errors, then warnings if possible. Also check in Search Console, under the Enhancements section, that your schema types are detected correctly and without critical errors.

Then test the client-side rendering: if your JSON-LD is injected in JavaScript after the initial load, make sure Googlebot sees it. Use the URL inspector in Search Console to compare the raw HTML with the rendered result. Finally, monitor your positions and CTR: a successful implementation can boost your visibility, whereas a broken one can hinder it.

  • Audit the current implementation (format, schema types, Search Console errors)
  • Prioritize JSON-LD in new developments and redesigns
  • Gradually migrate critical sections (products, articles, FAQs) without altering what works
  • Test each change with Google tools before going live
  • Cleanly remove the old Microdata after validating the JSON-LD
  • Monitor Search Console and SERPs for 2-4 weeks post-migration to catch any regressions
Adopting JSON-LD becomes a strategic recommendation to stay aligned with Google's roadmap, especially if you aim for new features of rich results. The migration can be technical, particularly in complex architectures or legacy CMSs. If you lack internal resources or want to secure this transition without regression risk, partnering with a specialized SEO agency can help validate each step and optimize the implementation according to your business context.

❓ Frequently Asked Questions

Microdata va-t-il disparaître complètement à court terme ?
Non. Google confirme qu'il n'y a pas de plan pour ignorer Microdata. Il reste supporté pour les types schema existants, mais les nouvelles features sortiront principalement en JSON-LD.
Puis-je mélanger JSON-LD et Microdata sur une même page ?
Techniquement oui, mais c'est fortement déconseillé si les deux formats décrivent le même objet. Google risque de s'y perdre ou d'ignorer l'un des deux. Mieux vaut choisir un format unique par type de donnée.
JSON-LD améliore-t-il directement le ranking ?
Non, les données structurées ne sont pas un facteur de classement direct. Elles améliorent l'affichage dans les SERPs (rich snippets), ce qui peut booster le CTR et indirectement le trafic.
Mon CMS génère du Microdata automatiquement, dois-je le désactiver ?
Pas forcément. Si vos rich snippets s'affichent correctement, conservez-le. Mais prévoyez une migration vers JSON-LD lors de la prochaine refonte ou mise à jour majeure du CMS.
Comment tester si mon JSON-LD est bien pris en compte par Google ?
Utilisez l'outil de test des résultats enrichis et l'inspecteur d'URL dans Search Console. Vérifiez aussi la section Améliorations pour détecter erreurs et warnings sur vos types schema.
🏷 Related Topics
Structured Data AI & SEO JavaScript & Technical SEO

🎥 From the same video 14

Other SEO insights extracted from this same Google Search Central video · duration 56 min · published on 01/12/2016

🎥 Watch the full video on YouTube →

Related statements

💬 Comments (0)

Be the first to comment.

2000 characters remaining
🔔

Get real-time analysis of the latest Google SEO declarations

Be the first to know every time a new official Google statement drops — with full expert analysis.

No spam. Unsubscribe in one click.