Schema Markup Analysis & Generation
Detect, validate, and generate Schema.org structured data.
How to use it
- Hit Copy SKILL.md — or use the Claude Code line below to get every file.
- Claude: ⋯ → Download .md, then Customize → Skills → Add → Upload skill.
ChatGPT: make a Project and paste it into Instructions.
Neither? Paste it at the top of a new chat — it works for that chat. - Describe your job in plain words. The AI follows the skill from there.
npx degit AgriciDaniel/claude-seo/skills/seo-schema#main ~/.claude/skills/seo-schemaFor one project only, change the path to .claude/skills/seo-schema. This skill also uses SCHEMA-REPORT.md, generated-schema.json — copying SKILL.md alone won't be enough. See the folder on GitHub.
Not working?
- Check which app you pasted it into — the steps above name the right one.
- Some skills need the paid tier of Claude or ChatGPT.
Paste into Claude, ChatGPT or Cursor.
Show the full text176 lines
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; valuehttps://schema.org/SexualContentConsideration) is required for adult products.Product.categoryacceptsText,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 resultsgenerated-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 | |
| 2 | name seo-schema |
| 3 | description > |
| 4 | Detect, validate, and generate Schema.org structured data. JSON-LD format |
| 5 | preferred. Use when user says "schema", "structured data", "rich results", |
| 6 | "JSON-LD", or "markup". |
| 7 | user-invocable true |
| 8 | argument-hint "[url]" |
| 9 | license MIT |
| 10 | metadata |
| 11 | author AgriciDaniel |
| 12 | version "2.3.1" |
| 13 | category seo |
| 14 | |
| 15 | |
| 16 | # Schema Markup Analysis & Generation |
| 17 | |
| 18 | ## Detection |
| 19 | |
| 20 | Scan page source for JSON-LD `<script type="application/ld+json">` |
| 21 | Check for Microdata (`itemscope`, `itemprop`) |
| 22 | Check for RDFa (`typeof`, `property`) |
| 23 | Always recommend JSON-LD as primary format (Google's stated preference) |
| 24 | |
| 25 | ## Validation |
| 26 | |
| 27 | Check required properties per schema type |
| 28 | Validate against Google's supported rich result types |
| 29 | Test for common errors: |
| 30 | Missing @context |
| 31 | Invalid @type |
| 32 | Wrong data types |
| 33 | Placeholder text |
| 34 | Relative URLs (should be absolute) |
| 35 | Invalid date formats |
| 36 | Flag deprecated types (see below) |
| 37 | |
| 38 | ## Schema Type Status (as of June 2026) |
| 39 | |
| 40 | Read `../seo/references/schema-types.md` for the full list. Key rules: |
| 41 | |
| 42 | ### ACTIVE (recommend freely): |
| 43 | 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 |
| 44 | |
| 45 | ### VIDEO & SPECIALIZED (recommend freely): |
| 46 | BroadcastEvent, Clip, SeekToAction, SoftwareSourceCode |
| 47 | |
| 48 | See `schema/templates.json` for ready-to-use JSON-LD templates for these types. |
| 49 | |
| 50 | > **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. |
| 51 | |
| 52 | ### NO RICH RESULTS, KEEP IF USEFUL: |
| 53 | **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**. |
| 54 | |
| 55 | ### DEPRECATED (never recommend): |
| 56 | **HowTo**: Rich results removed September 2023 |
| 57 | **SpecialAnnouncement**: Deprecated July 31, 2025 |
| 58 | **CourseInfo, EstimatedSalary, LearningVideo**: Retired June 2025 |
| 59 | **ClaimReview**: Retired from rich results June 2025 |
| 60 | **VehicleListing**: Retired from rich results June 2025 |
| 61 | **Practice Problem**: Deprecation notice 2025-11-05; Search Console / Rich Results Test support removed 2026-01-06 |
| 62 | **Book Actions**: Deprecated/removed from Google rich results; do not recommend it for SERP features. |
| 63 | 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. |
| 64 | |
| 65 | ### Supported for Dataset Search only: |
| 66 | **Dataset**: Not discontinued; consumed by Google Dataset Search, with no Google Search rich-result surface. Don't advise removal as if it were killed. |
| 67 | |
| 68 | ### Still supported (do not flag): |
| 69 | 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. |
| 70 | |
| 71 | ## Generation |
| 72 | |
| 73 | When generating schema for a page: |
| 74 | Identify page type from content analysis |
| 75 | Select appropriate schema type(s) |
| 76 | Generate valid JSON-LD with all required + recommended properties |
| 77 | Include only truthful, verifiable data. Use placeholders clearly marked for user to fill |
| 78 | Validate output before presenting |
| 79 | For review markup, reject fake reviews and undisclosed incentivized reviews. |
| 80 | An incentive must be clearly and prominently disclosed on the page. |
| 81 | |
| 82 | ## Common Schema Templates |
| 83 | |
| 84 | ### Organization |
| 85 | |
| 86 | { |
| 87 | "@context": "https://schema.org", |
| 88 | "@type": "Organization", |
| 89 | "name": "[Company Name]", |
| 90 | "url": "[Website URL]", |
| 91 | "logo": "[Logo URL]", |
| 92 | "contactPoint": { |
| 93 | "@type": "ContactPoint", |
| 94 | "telephone": "[Phone]", |
| 95 | "contactType": "customer service" |
| 96 | }, |
| 97 | "sameAs": [ |
| 98 | "[Facebook URL]", |
| 99 | "[LinkedIn URL]", |
| 100 | "[Twitter URL]" |
| 101 | ] |
| 102 | } |
| 103 | |
| 104 | |
| 105 | ### LocalBusiness |
| 106 | |
| 107 | { |
| 108 | "@context": "https://schema.org", |
| 109 | "@type": "LocalBusiness", |
| 110 | "name": "[Business Name]", |
| 111 | "address": { |
| 112 | "@type": "PostalAddress", |
| 113 | "streetAddress": "[Street]", |
| 114 | "addressLocality": "[City]", |
| 115 | "addressRegion": "[State]", |
| 116 | "postalCode": "[ZIP]", |
| 117 | "addressCountry": "US" |
| 118 | }, |
| 119 | "telephone": "[Phone]", |
| 120 | "openingHours": "Mo-Fr 09:00-17:00", |
| 121 | "geo": { |
| 122 | "@type": "GeoCoordinates", |
| 123 | "latitude": "[Lat]", |
| 124 | "longitude": "[Long]" |
| 125 | } |
| 126 | } |
| 127 | |
| 128 | |
| 129 | ### Article/BlogPosting |
| 130 | |
| 131 | { |
| 132 | "@context": "https://schema.org", |
| 133 | "@type": "Article", |
| 134 | "headline": "[Title]", |
| 135 | "author": { |
| 136 | "@type": "Person", |
| 137 | "name": "[Author Name]" |
| 138 | }, |
| 139 | "datePublished": "[YYYY-MM-DD]", |
| 140 | "dateModified": "[YYYY-MM-DD]", |
| 141 | "image": "[Image URL]", |
| 142 | "publisher": { |
| 143 | "@type": "Organization", |
| 144 | "name": "[Publisher]", |
| 145 | "logo": { |
| 146 | "@type": "ImageObject", |
| 147 | "url": "[Logo URL]" |
| 148 | } |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | |
| 153 | ## Output |
| 154 | |
| 155 | `SCHEMA-REPORT.md`: detection and validation results |
| 156 | `generated-schema.json`: ready-to-use JSON-LD snippets |
| 157 | |
| 158 | ### Validation Results |
| 159 | | Schema | Type | Status | Issues | |
| 160 | |--------|------|--------|--------| |
| 161 | | ... | ... | ✅/⚠️/❌ | ... | |
| 162 | |
| 163 | ### Recommendations |
| 164 | Missing schema opportunities |
| 165 | Validation fixes needed |
| 166 | Generated code for implementation |
| 167 | |
| 168 | ## Error Handling |
| 169 | |
| 170 | | Scenario | Action | |
| 171 | |----------|--------| |
| 172 | | URL unreachable | Report connection error with status code. Suggest verifying URL and checking if the page requires authentication. | |
| 173 | | No schema markup found | Report that no JSON-LD, Microdata, or RDFa was detected. Recommend appropriate schema types based on page content analysis. | |
| 174 | | Invalid JSON-LD syntax | Parse and report specific syntax errors (missing brackets, trailing commas, unquoted keys). Provide corrected JSON-LD output. | |
| 175 | | Deprecated schema type detected | Flag the deprecated type with its retirement date. Recommend the current replacement type or advise removal if no replacement exists. | |
| 176 |