---
name: schema-markup-generator
version: "3.0.0"
description: 'This skill should be used when the user asks to "add schema markup", "generate structured data", "JSON-LD", "rich snippets", "FAQ schema", "HowTo schema", "Product schema", "Article schema", "LocalBusiness schema", "Organization schema", "BreadcrumbList", "I want star ratings in Google", "rich results", "voice search optimization", "event markup", or "structured data validation errors". Generates Schema.org JSON-LD for FAQPage, HowTo, Article/BlogPosting, Product, AggregateRating, LocalBusiness, Organization, BreadcrumbList, Event, and Recipe types. Produces validated markup targeting Google Rich Results, Bing structured data, and AI system understanding (FAQ schema improves AI citation chances). Validates against Google Rich Results Test requirements. For broader technical SEO, see technical-seo-checker. For meta tag optimization, see meta-tags-optimizer.'
license: Apache-2.0
compatibility: "Claude Code ≥1.0, skills.sh marketplace, ClawHub marketplace, Vercel Labs skills ecosystem. No system packages required. Optional: MCP network access for SEO tool integrations."
allowed-tools: WebFetch
metadata:
author: aaron-he-zhu
version: "3.0.0"
geo-relevance: "medium"
tags:
- seo
- structured-data
- json-ld
- rich-results
- rich-snippets
- faq-schema
- howto-schema
- product-schema
- article-schema
- localbusiness-schema
- schema-org
triggers:
- "add schema markup"
- "generate structured data"
- "JSON-LD"
- "rich snippets"
- "FAQ schema"
- "schema.org"
- "structured data markup"
- "add FAQ rich results"
- "I want star ratings in Google"
- "product markup"
- "recipe schema"
---
# Schema Markup Generator
> **[SEO & GEO Skills Library](https://skills.sh/aaron-he-zhu/seo-geo-claude-skills)** · 20 skills for SEO + GEO · Install all: `npx skills add aaron-he-zhu/seo-geo-claude-skills`
Browse all 20 skills
**Research** · [keyword-research](../../research/keyword-research/) · [competitor-analysis](../../research/competitor-analysis/) · [serp-analysis](../../research/serp-analysis/) · [content-gap-analysis](../../research/content-gap-analysis/)
**Build** · [seo-content-writer](../seo-content-writer/) · [geo-content-optimizer](../geo-content-optimizer/) · [meta-tags-optimizer](../meta-tags-optimizer/) · **schema-markup-generator**
**Optimize** · [on-page-seo-auditor](../../optimize/on-page-seo-auditor/) · [technical-seo-checker](../../optimize/technical-seo-checker/) · [internal-linking-optimizer](../../optimize/internal-linking-optimizer/) · [content-refresher](../../optimize/content-refresher/)
**Monitor** · [rank-tracker](../../monitor/rank-tracker/) · [backlink-analyzer](../../monitor/backlink-analyzer/) · [performance-reporter](../../monitor/performance-reporter/) · [alert-manager](../../monitor/alert-manager/)
**Cross-cutting** · [content-quality-auditor](../../cross-cutting/content-quality-auditor/) · [domain-authority-auditor](../../cross-cutting/domain-authority-auditor/) · [entity-optimizer](../../cross-cutting/entity-optimizer/) · [memory-management](../../cross-cutting/memory-management/)
** ```html ``` ### Validation Steps 1. **~~schema validator** - Test your live URL or paste code - Check for errors and warnings 2. **Schema.org Validator** - URL: https://validator.schema.org/ - Validates against Schema.org spec 3. **~~search console** - Monitor rich results in ~~search console - Check Enhancements reports for issues ### Validation Checklist - [ ] JSON syntax is valid (no trailing commas) - [ ] All required properties present - [ ] URLs are absolute, not relative - [ ] Dates are in ISO 8601 format - [ ] Content matches visible page content - [ ] No policy violations ``` ## Validation Checkpoints ### Input Validation - [ ] Page URL or content provided - [ ] Schema type appropriate for content (Article for blog, Product for e-commerce, etc.) - [ ] All required data available (author, dates, prices, etc. depending on schema type) - [ ] Content eligibility for rich results confirmed ### Output Validation - [ ] JSON syntax validates (no trailing commas, proper quotes) - [ ] All required properties present for chosen schema type - [ ] URLs are absolute, not relative - [ ] Dates in ISO 8601 format (YYYY-MM-DDTHH:MM:SS+00:00) - [ ] Schema content matches visible page content exactly - [ ] Passes ~~schema validator with no errors - [ ] Source of each data point clearly stated (~~web crawler extraction, user-provided, or manual entry) ## Example **User**: "Generate FAQ schema for a page about SEO with 3 questions" **Output**: ```markdown ## FAQ Schema for SEO Page ### Schema Markup ```json { "@context": "https://schema.org", "@type": "FAQPage", "mainEntity": [ { "@type": "Question", "name": "What is SEO?", "acceptedAnswer": { "@type": "Answer", "text": "SEO (Search Engine Optimization) is the practice of optimizing websites and content to rank higher in search engine results pages (SERPs). It involves technical optimizations, content creation, and link building to increase organic visibility and drive qualified traffic to your website." } }, { "@type": "Question", "name": "How long does SEO take to work?", "acceptedAnswer": { "@type": "Answer", "text": "SEO typically takes 3-6 months to show significant results, though this varies based on competition, domain authority, and effort invested. New websites may take 6-12 months, while established sites with existing authority can see improvements in 1-3 months for less competitive keywords." } }, { "@type": "Question", "name": "Is SEO better than paid advertising?", "acceptedAnswer": { "@type": "Answer", "text": "SEO and paid advertising serve different purposes. SEO provides sustainable, long-term traffic without per-click costs but takes time to build. Paid advertising delivers immediate results but stops when you stop paying. Most successful businesses use both: paid ads for immediate leads and SEO for long-term growth." } } ] } ``` _Implementation: Wrap the above JSON-LD in `` and place in `
` or before ``. Test with ~~schema validator._ ### SERP Preview ``` SEO Guide: Complete Beginner's Tutorial yoursite.com/seo-guide/ Learn SEO from scratch with our comprehensive guide... ▼ What is SEO? SEO (Search Engine Optimization) is the practice of optimizing... ▼ How long does SEO take to work? SEO typically takes 3-6 months to show significant results... ▼ Is SEO better than paid advertising? SEO and paid advertising serve different purposes... ``` ``` ## Schema Type Quick Reference | Content Type | Schema Type | Key Properties | |--------------|-------------|----------------| | Blog Post | BlogPosting/Article | headline, datePublished, author | | Product | Product | name, price, availability | | FAQ | FAQPage | Question, Answer | | How-To | HowTo | step, totalTime | | Local Business | LocalBusiness | address, geo, openingHours | | Recipe | Recipe | ingredients, cookTime | | Event | Event | startDate, location | | Video | VideoObject | uploadDate, duration | | Course | Course | provider, name | | Review | Review | itemReviewed, ratingValue | ## Tips for Success 1. **Match visible content** - Schema must reflect what users see 2. **Don't spam** - Only add schema for relevant content 3. **Keep updated** - Update dates and prices when they change 4. **Test thoroughly** - Validate before deploying 5. **Monitor Search Console** - Watch for errors and warnings ## Schema Type Decision Tree > **Reference**: See [references/schema-decision-tree.md](./references/schema-decision-tree.md) for the full decision tree (content-to-schema mapping), industry-specific recommendations, implementation priority tiers (P0-P4), and validation quick reference. ## Reference Materials - [Schema Templates](./references/schema-templates.md) - Copy-ready JSON-LD templates for all schema types - [Validation Guide](./references/validation-guide.md) - Common errors, required properties, testing workflow ## Related Skills - [seo-content-writer](../seo-content-writer/) — Create content worth marking up - [on-page-seo-auditor](../../optimize/on-page-seo-auditor/) — Audit existing schema - [technical-seo-checker](../../optimize/technical-seo-checker/) — Technical validation - [entity-optimizer](../../cross-cutting/entity-optimizer/) — Entity audit informs Organization, Person, Product schema