Schema Markup Analysis & Generation
Detection
- Scan page source for JSON-LD
<script type="application/ld+json">
- Check for Microdata (
itemscope, itemprop)
- Check for RDFa (
typeof, property)
- Always recommend JSON-LD as primary format (Google's stated preference)
Validation
- Check required properties per schema type
- Validate against Google's supported rich result types
- Test for common errors:
- Missing @context
- Invalid @type
- Wrong data types
- Placeholder text
- Relative URLs (should be absolute)
- Invalid date formats
- Flag deprecated types (see below)
Schema Type Status (as of June 2026)
Read ../seo/references/schema-types.md for the full list. Key rules:
ACTIVE (recommend freely):
Organization, LocalBusiness, SoftwareApplication, WebApplication, Product (with Certification markup as of April 2025), ProductGroup, Offer, Service, Article, BlogPosting, NewsArticle, Review, AggregateRating, BreadcrumbList, WebSite, WebPage, Person, ProfilePage, ContactPage, VideoObject, ImageObject, Event, JobPosting, Course, DiscussionForumPosting
VIDEO & SPECIALIZED (recommend freely):
BroadcastEvent, Clip, SeekToAction, SoftwareSourceCode
See schema/templates.json for ready-to-use JSON-LD templates for these types.
JSON-LD and JavaScript rendering: Per Google's December 2025 JS SEO guidance, structured data injected via JavaScript may face delayed processing. For time-sensitive markup (especially Product, Offer), include JSON-LD in the initial server-rendered HTML.
NO RICH RESULTS, KEEP IF USEFUL:
- FAQPage: Google retired FAQ rich results for ALL sites on May 7, 2026 (supersedes the Aug 2023 gov/health restriction). No Google SERP rich-result benefit; flag existing FAQPage at Info (not Critical) rather than removal. For genuine user Q&A pages, use QAPage.
DEPRECATED (never recommend):
- HowTo: Rich results removed September 2023
- SpecialAnnouncement: Deprecated July 31, 2025
- CourseInfo, EstimatedSalary, LearningVideo: Retired June 2025
- ClaimReview: Retired from rich results June 2025
- VehicleListing: Retired from rich results June 2025
- Practice Problem: Deprecation notice 2025-11-05; Search Console / Rich Results Test support removed 2026-01-06
- Book Actions: Deprecated/removed from Google rich results; do not recommend it for SERP features.
- Search Console / Rich Results Test / appearance-filter support for CourseInfo, EstimatedSalary, LearningVideo, SpecialAnnouncement, VehicleListing was removed 2025-09-09; Practice Problem support was removed 2026-01-06.
Supported for Dataset Search only:
- Dataset: Not discontinued; consumed by Google Dataset Search, with no Google Search rich-result surface. Don't advise removal as if it were killed.
Still supported (do not flag):
- QAPage (expanded comment-thread properties 2026-03-24), DiscussionForumPosting, Education Q&A (Quiz /
eduQuestionType=Flashcard). For e-commerce, hasAdultConsideration (added 2026-05-20; value https://schema.org/SexualContentConsideration) is required for adult products. Product.category accepts Text, CategoryCode, or arrays mixing both.
Generation
When generating schema for a page:
- Identify page type from content analysis
- Select appropriate schema type(s)
- Generate valid JSON-LD with all required + recommended properties
- Include only truthful, verifiable data. Use placeholders clearly marked for user to fill
- Validate output before presenting
- For review markup, reject fake reviews and undisclosed incentivized reviews.
An incentive must be clearly and prominently disclosed on the page.
Common Schema Templates
Organization
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "[Company Name]",
"url": "[Website URL]",
"logo": "[Logo URL]",
"contactPoint": {
"@type": "ContactPoint",
"telephone": "[Phone]",
"contactType": "customer service"
},
"sameAs": [
"[Facebook URL]",
"[LinkedIn URL]",
"[Twitter URL]"
]
}
LocalBusiness
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"name": "[Business Name]",
"address": {
"@type": "PostalAddress",
"streetAddress": "[Street]",
"addressLocality": "[City]",
"addressRegion": "[State]",
"postalCode": "[ZIP]",
"addressCountry": "US"
},
"telephone": "[Phone]",
"openingHours": "Mo-Fr 09:00-17:00",
"geo": {
"@type": "GeoCoordinates",
"latitude": "[Lat]",
"longitude": "[Long]"
}
}
Article/BlogPosting
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "[Title]",
"author": {
"@type": "Person",
"name": "[Author Name]"
},
"datePublished": "[YYYY-MM-DD]",
"dateModified": "[YYYY-MM-DD]",
"image": "[Image URL]",
"publisher": {
"@type": "Organization",
"name": "[Publisher]",
"logo": {
"@type": "ImageObject",
"url": "[Logo URL]"
}
}
}
Output
SCHEMA-REPORT.md: detection and validation results
generated-schema.json: ready-to-use JSON-LD snippets
Validation Results
| Schema |
Type |
Status |
Issues |
| ... |
... |
✅/⚠️/❌ |
... |
Recommendations
- Missing schema opportunities
- Validation fixes needed
- Generated code for implementation
Error Handling
| Scenario |
Action |
| URL unreachable |
Report connection error with status code. Suggest verifying URL and checking if the page requires authentication. |
| No schema markup found |
Report that no JSON-LD, Microdata, or RDFa was detected. Recommend appropriate schema types based on page content analysis. |
| Invalid JSON-LD syntax |
Parse and report specific syntax errors (missing brackets, trailing commas, unquoted keys). Provide corrected JSON-LD output. |
| Deprecated schema type detected |
Flag the deprecated type with its retirement date. Recommend the current replacement type or advise removal if no replacement exists. |
1---2name: seo-schema3description: Detect, validate, and generate Schema.org structured data. JSON-LD format preferred. Use when user says "schema", "structured data", "rich results", "JSON-LD", or "markup".4license: MIT5---67# Schema Markup Analysis & Generation89## Detection10111. Scan page source for JSON-LD `<script type="application/ld+json">`122. Check for Microdata (`itemscope`, `itemprop`)133. Check for RDFa (`typeof`, `property`)144. Always recommend JSON-LD as primary format (Google's stated preference)1516## Validation1718- Check required properties per schema type19- Validate against Google's supported rich result types20- Test for common errors:21 - Missing @context22 - Invalid @type23 - Wrong data types24 - Placeholder text25 - Relative URLs (should be absolute)26 - Invalid date formats27- Flag deprecated types (see below)2829## Schema Type Status (as of June 2026)3031Read `../seo/references/schema-types.md` for the full list. Key rules:3233### ACTIVE (recommend freely):34Organization, LocalBusiness, SoftwareApplication, WebApplication, Product (with Certification markup as of April 2025), ProductGroup, Offer, Service, Article, BlogPosting, NewsArticle, Review, AggregateRating, BreadcrumbList, WebSite, WebPage, Person, ProfilePage, ContactPage, VideoObject, ImageObject, Event, JobPosting, Course, DiscussionForumPosting3536### VIDEO & SPECIALIZED (recommend freely):37BroadcastEvent, Clip, SeekToAction, SoftwareSourceCode3839See `schema/templates.json` for ready-to-use JSON-LD templates for these types.4041> **JSON-LD and JavaScript rendering:** Per Google's December 2025 JS SEO guidance, structured data injected via JavaScript may face delayed processing. For time-sensitive markup (especially Product, Offer), include JSON-LD in the initial server-rendered HTML.4243### NO RICH RESULTS, KEEP IF USEFUL:44- **FAQPage**: Google retired FAQ rich results for ALL sites on May 7, 2026 (supersedes the Aug 2023 gov/health restriction). No Google SERP rich-result benefit; flag existing FAQPage at Info (not Critical) rather than removal. For genuine user Q&A pages, use **QAPage**.4546### DEPRECATED (never recommend):47- **HowTo**: Rich results removed September 202348- **SpecialAnnouncement**: Deprecated July 31, 202549- **CourseInfo, EstimatedSalary, LearningVideo**: Retired June 202550- **ClaimReview**: Retired from rich results June 202551- **VehicleListing**: Retired from rich results June 202552- **Practice Problem**: Deprecation notice 2025-11-05; Search Console / Rich Results Test support removed 2026-01-0653- **Book Actions**: Deprecated/removed from Google rich results; do not recommend it for SERP features.54- Search Console / Rich Results Test / appearance-filter support for CourseInfo, EstimatedSalary, LearningVideo, SpecialAnnouncement, VehicleListing was removed 2025-09-09; Practice Problem support was removed 2026-01-06.5556### Supported for Dataset Search only:57- **Dataset**: Not discontinued; consumed by Google Dataset Search, with no Google Search rich-result surface. Don't advise removal as if it were killed.5859### Still supported (do not flag):60- QAPage (expanded comment-thread properties 2026-03-24), DiscussionForumPosting, Education Q&A (Quiz / `eduQuestionType=Flashcard`). For e-commerce, **hasAdultConsideration** (added 2026-05-20; value `https://schema.org/SexualContentConsideration`) is required for adult products. `Product.category` accepts `Text`, `CategoryCode`, or arrays mixing both.6162## Generation6364When generating schema for a page:651. Identify page type from content analysis662. Select appropriate schema type(s)673. Generate valid JSON-LD with all required + recommended properties684. Include only truthful, verifiable data. Use placeholders clearly marked for user to fill695. Validate output before presenting706. For review markup, reject fake reviews and undisclosed incentivized reviews.71 An incentive must be clearly and prominently disclosed on the page.7273## Common Schema Templates7475### Organization76```json77{78 "@context": "https://schema.org",79 "@type": "Organization",80 "name": "[Company Name]",81 "url": "[Website URL]",82 "logo": "[Logo URL]",83 "contactPoint": {84 "@type": "ContactPoint",85 "telephone": "[Phone]",86 "contactType": "customer service"87 },88 "sameAs": [89 "[Facebook URL]",90 "[LinkedIn URL]",91 "[Twitter URL]"92 ]93}94```9596### LocalBusiness97```json98{99 "@context": "https://schema.org",100 "@type": "LocalBusiness",101 "name": "[Business Name]",102 "address": {103 "@type": "PostalAddress",104 "streetAddress": "[Street]",105 "addressLocality": "[City]",106 "addressRegion": "[State]",107 "postalCode": "[ZIP]",108 "addressCountry": "US"109 },110 "telephone": "[Phone]",111 "openingHours": "Mo-Fr 09:00-17:00",112 "geo": {113 "@type": "GeoCoordinates",114 "latitude": "[Lat]",115 "longitude": "[Long]"116 }117}118```119120### Article/BlogPosting121```json122{123 "@context": "https://schema.org",124 "@type": "Article",125 "headline": "[Title]",126 "author": {127 "@type": "Person",128 "name": "[Author Name]"129 },130 "datePublished": "[YYYY-MM-DD]",131 "dateModified": "[YYYY-MM-DD]",132 "image": "[Image URL]",133 "publisher": {134 "@type": "Organization",135 "name": "[Publisher]",136 "logo": {137 "@type": "ImageObject",138 "url": "[Logo URL]"139 }140 }141}142```143144## Output145146- `SCHEMA-REPORT.md`: detection and validation results147- `generated-schema.json`: ready-to-use JSON-LD snippets148149### Validation Results150| Schema | Type | Status | Issues |151|--------|------|--------|--------|152| ... | ... | ✅/⚠️/❌ | ... |153154### Recommendations155- Missing schema opportunities156- Validation fixes needed157- Generated code for implementation158159## Error Handling160161| Scenario | Action |162|----------|--------|163| URL unreachable | Report connection error with status code. Suggest verifying URL and checking if the page requires authentication. |164| No schema markup found | Report that no JSON-LD, Microdata, or RDFa was detected. Recommend appropriate schema types based on page content analysis. |165| Invalid JSON-LD syntax | Parse and report specific syntax errors (missing brackets, trailing commas, unquoted keys). Provide corrected JSON-LD output. |166| Deprecated schema type detected | Flag the deprecated type with its retirement date. Recommend the current replacement type or advise removal if no replacement exists. |