Schema Markup Generator
This skill creates Schema.org structured data markup in JSON-LD format to help search engines understand your content and enable rich results in SERPs.
When This Must Trigger
Use this when the conversation involves any of these situations — even if the user does not use SEO terminology:
Use this whenever the task needs a shippable asset or transformation that should feed directly into quality review, deployment, or monitoring.
- Adding FAQ schema for expanded SERP presence
- Creating How-To schema for step-by-step content
- Adding Product schema for e-commerce pages
- Implementing Article schema for blog posts
- Adding Local Business schema for location pages
- Creating Review/Rating schema
- Implementing Organization schema for brand presence
- Any page where rich results would improve visibility
What This Skill Does
- Schema Type Selection: Recommends appropriate schema types
- JSON-LD Generation: Creates valid structured data markup
- Property Mapping: Maps your content to schema properties
- Validation Guidance: Ensures schema meets requirements
- Nested Schema: Handles complex, multi-type schemas
- Rich Result Eligibility: Identifies which rich results you can target
Quick Start
Start with one of these prompts.
Generate Schema for Content
Generate schema markup for this [content type]: [content/URL]
Create FAQ schema for these questions and answers: [Q&A list]
Specific Schema Types
Create Product schema for [product name] with [details]
Generate LocalBusiness schema for [business name and details]
Audit Existing Schema
Review and improve this schema markup: [existing schema]
Data Sources
With ~~web crawler connected:
Automatically crawl and extract page content (visible text, headings, lists, tables), existing schema markup, page metadata, and structured content elements that map to schema properties.
With manual data only:
Ask the user to provide:
- Page URL or full HTML content
- Page type (article, product, FAQ, how-to, local business, etc.)
- Specific data needed for schema (prices, dates, author info, Q&A pairs, etc.)
- Current schema markup (if optimizing existing)
Proceed with the full workflow using provided data. Note in the output which data is from automated extraction vs. user-provided data.
Instructions
When a user requests schema markup:
Identify Content Type and Rich Result Opportunity
Reference the CORE-EEAT Benchmark item O05 (Schema Markup) for content-type to schema mapping:
### CORE-EEAT Schema Mapping (O05)
| Content Type | Required Schema | Conditional Schema |
|-------------|----------------|--------------------|
| Blog (guides) | Article, Breadcrumb | FAQ, HowTo |
| Blog (tools) | Article, Breadcrumb | FAQ, Review |
| Blog (insights) | Article, Breadcrumb | FAQ |
| Alternative | Comparison*, Breadcrumb, FAQ | AggregateRating |
| Best-of | ItemList, Breadcrumb, FAQ | AggregateRating per tool |
| Use-case | WebPage, Breadcrumb, FAQ | — |
| FAQ | FAQPage, Breadcrumb | — |
| Landing | SoftwareApplication, Breadcrumb, FAQ | WebPage |
| Testimonial | Review, Breadcrumb | FAQ, Person |
*Use the mapping above to ensure schema type matches content type (CORE-EEAT O05: Pass criteria).*
### Schema Analysis
**Content Type**: [blog/product/FAQ/how-to/local business/etc.]
**Page URL**: [URL]
**Eligible Rich Results**:
| Rich Result Type | Eligibility | Impact |
|------------------|-------------|--------|
| FAQ | ✅/❌ | High - Expands SERP presence |
| How-To | ✅/❌ | Medium - Shows steps in SERP |
| Product | ✅/❌ | High - Shows price, availability |
| Review | ✅/❌ | High - Shows star ratings |
| Article | ✅/❌ | Medium - Shows publish date, author |
| Breadcrumb | ✅/❌ | Medium - Shows navigation path |
| Video | ✅/❌ | High - Shows video thumbnail |
**Recommended Schema Types**:
1. [Primary schema type] - [reason]
2. [Secondary schema type] - [reason]
Generate Schema Markup
Based on the identified content type, generate the appropriate JSON-LD schema. Supported types: FAQPage, HowTo, Article/BlogPosting/NewsArticle, Product, LocalBusiness, Organization, BreadcrumbList, Event, Recipe, and combined multi-type schemas.
Reference: See references/schema-templates.md for complete, copy-ready JSON-LD templates for all schema types with required and optional properties.
For each schema generated, include:
- All required properties for the chosen type
- Rich result preview showing expected SERP appearance
- Notes on which properties are required vs. optional
When combining multiple schema types on one page, wrap them in a JSON array inside a single <script type="application/ld+json"> tag.
Provide Implementation and Validation
## Implementation Guide
### Adding Schema to Your Page
**Option 1: In HTML <head>**
```html
<head>
<script type="application/ld+json">
[Your JSON-LD schema here]
</script>
</head>
Option 2: Before closing
<script type="application/ld+json">
[Your JSON-LD schema here]
</script>
</body>
Validation Steps
~~schema validator
- Test your live URL or paste code
- Check for errors and warnings
Schema.org Validator
~~search console
- Monitor rich results in ~~search console
- Check Enhancements reports for issues
Validation Checklist
Validation Checkpoints
Input Validation
Output Validation
Example
User: "Generate FAQ schema for a page about SEO with 3 questions"
Output:
## 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 <script type="application/ld+json">...</script> and place in <head> or before </body>. 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
## Next Best Skill
- **Primary**: [seo-analysis](../seo-analysis/SKILL.md) — verify implementation with a technical SEO audit.
1---2name: schema-markup-generator3description: Generate JSON-LD structured data markup for rich results in Google Search. Supports FAQ, HowTo, Article, Product, LocalBusiness, and multi-type schemas. Validates against Google requirements and provides implementation guidance. Use when asked to "add schema markup", "generate structured data", "JSON-LD", "rich snippets", "FAQ schema", "product markup", "add structured data to my page", "how to get rich snippets", or any structured data task.4---56# Schema Markup Generator78This skill creates Schema.org structured data markup in JSON-LD format to help search engines understand your content and enable rich results in SERPs.910## When This Must Trigger1112Use this when the conversation involves any of these situations — even if the user does not use SEO terminology:1314Use this whenever the task needs a shippable asset or transformation that should feed directly into quality review, deployment, or monitoring.1516- Adding FAQ schema for expanded SERP presence17- Creating How-To schema for step-by-step content18- Adding Product schema for e-commerce pages19- Implementing Article schema for blog posts20- Adding Local Business schema for location pages21- Creating Review/Rating schema22- Implementing Organization schema for brand presence23- Any page where rich results would improve visibility2425## What This Skill Does26271. **Schema Type Selection**: Recommends appropriate schema types282. **JSON-LD Generation**: Creates valid structured data markup293. **Property Mapping**: Maps your content to schema properties304. **Validation Guidance**: Ensures schema meets requirements315. **Nested Schema**: Handles complex, multi-type schemas326. **Rich Result Eligibility**: Identifies which rich results you can target3334## Quick Start3536Start with one of these prompts.3738### Generate Schema for Content3940```41Generate schema markup for this [content type]: [content/URL]42```4344```45Create FAQ schema for these questions and answers: [Q&A list]46```4748### Specific Schema Types4950```51Create Product schema for [product name] with [details]52```5354```55Generate LocalBusiness schema for [business name and details]56```5758### Audit Existing Schema5960```61Review and improve this schema markup: [existing schema]62```6364## Data Sources6566**With ~~web crawler connected:**67Automatically crawl and extract page content (visible text, headings, lists, tables), existing schema markup, page metadata, and structured content elements that map to schema properties.6869**With manual data only:**70Ask the user to provide:711. Page URL or full HTML content722. Page type (article, product, FAQ, how-to, local business, etc.)733. Specific data needed for schema (prices, dates, author info, Q&A pairs, etc.)744. Current schema markup (if optimizing existing)7576Proceed with the full workflow using provided data. Note in the output which data is from automated extraction vs. user-provided data.7778## Instructions7980When a user requests schema markup:81821. **Identify Content Type and Rich Result Opportunity**8384 Reference the CORE-EEAT Benchmark item **O05 (Schema Markup)** for content-type to schema mapping:8586 ```markdown87 ### CORE-EEAT Schema Mapping (O05)8889 | Content Type | Required Schema | Conditional Schema |90 |-------------|----------------|--------------------|91 | Blog (guides) | Article, Breadcrumb | FAQ, HowTo |92 | Blog (tools) | Article, Breadcrumb | FAQ, Review |93 | Blog (insights) | Article, Breadcrumb | FAQ |94 | Alternative | Comparison*, Breadcrumb, FAQ | AggregateRating |95 | Best-of | ItemList, Breadcrumb, FAQ | AggregateRating per tool |96 | Use-case | WebPage, Breadcrumb, FAQ | — |97 | FAQ | FAQPage, Breadcrumb | — |98 | Landing | SoftwareApplication, Breadcrumb, FAQ | WebPage |99 | Testimonial | Review, Breadcrumb | FAQ, Person |100101 *Use the mapping above to ensure schema type matches content type (CORE-EEAT O05: Pass criteria).*102 ```103104 ```markdown105 ### Schema Analysis106107 **Content Type**: [blog/product/FAQ/how-to/local business/etc.]108 **Page URL**: [URL]109110 **Eligible Rich Results**:111 112 | Rich Result Type | Eligibility | Impact |113 |------------------|-------------|--------|114 | FAQ | ✅/❌ | High - Expands SERP presence |115 | How-To | ✅/❌ | Medium - Shows steps in SERP |116 | Product | ✅/❌ | High - Shows price, availability |117 | Review | ✅/❌ | High - Shows star ratings |118 | Article | ✅/❌ | Medium - Shows publish date, author |119 | Breadcrumb | ✅/❌ | Medium - Shows navigation path |120 | Video | ✅/❌ | High - Shows video thumbnail |121 122 **Recommended Schema Types**:123 1. [Primary schema type] - [reason]124 2. [Secondary schema type] - [reason]125 ```1261272. **Generate Schema Markup**128129 Based on the identified content type, generate the appropriate JSON-LD schema. Supported types: FAQPage, HowTo, Article/BlogPosting/NewsArticle, Product, LocalBusiness, Organization, BreadcrumbList, Event, Recipe, and combined multi-type schemas.130131 > **Reference**: See [references/schema-templates.md](references/schema-templates.md) for complete, copy-ready JSON-LD templates for all schema types with required and optional properties.132133 For each schema generated, include:134 - All required properties for the chosen type135 - Rich result preview showing expected SERP appearance136 - Notes on which properties are required vs. optional137138 When combining multiple schema types on one page, wrap them in a JSON array inside a single `<script type="application/ld+json">` tag.1391403. **Provide Implementation and Validation**141142 ```markdown143 ## Implementation Guide144145 ### Adding Schema to Your Page146147 **Option 1: In HTML <head>**148 ```html149 <head>150 <script type="application/ld+json">151 [Your JSON-LD schema here]152 </script>153 </head>154 ```155156 **Option 2: Before closing </body>**157 ```html158 <script type="application/ld+json">159 [Your JSON-LD schema here]160 </script>161 </body>162 ```163164 ### Validation Steps165166 1. **~~schema validator**167 - Test your live URL or paste code168 - Check for errors and warnings169170 2. **Schema.org Validator**171 - URL: https://validator.schema.org/172 - Validates against Schema.org spec173174 3. **~~search console**175 - Monitor rich results in ~~search console176 - Check Enhancements reports for issues177178 ### Validation Checklist179180 - [ ] JSON syntax is valid (no trailing commas)181 - [ ] All required properties present182 - [ ] URLs are absolute, not relative183 - [ ] Dates are in ISO 8601 format184 - [ ] Content matches visible page content185 - [ ] No policy violations186 ```187188## Validation Checkpoints189190### Input Validation191- [ ] Page URL or content provided192- [ ] Schema type appropriate for content (Article for blog, Product for e-commerce, etc.)193- [ ] All required data available (author, dates, prices, etc. depending on schema type)194- [ ] Content eligibility for rich results confirmed195196### Output Validation197- [ ] JSON syntax validates (no trailing commas, proper quotes)198- [ ] All required properties present for chosen schema type199- [ ] URLs are absolute, not relative200- [ ] Dates in ISO 8601 format (YYYY-MM-DDTHH:MM:SS+00:00)201- [ ] Schema content matches visible page content exactly202- [ ] Passes ~~schema validator with no errors203- [ ] Source of each data point clearly stated (~~web crawler extraction, user-provided, or manual entry)204205## Example206207**User**: "Generate FAQ schema for a page about SEO with 3 questions"208209**Output**:210211```markdown212## FAQ Schema for SEO Page213214### Schema Markup215216```json217{218 "@context": "https://schema.org",219 "@type": "FAQPage",220 "mainEntity": [221 {222 "@type": "Question",223 "name": "What is SEO?",224 "acceptedAnswer": {225 "@type": "Answer",226 "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."227 }228 },229 {230 "@type": "Question",231 "name": "How long does SEO take to work?",232 "acceptedAnswer": {233 "@type": "Answer",234 "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."235 }236 },237 {238 "@type": "Question",239 "name": "Is SEO better than paid advertising?",240 "acceptedAnswer": {241 "@type": "Answer",242 "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."243 }244 }245 ]246}247```248249_Implementation: Wrap the above JSON-LD in `<script type="application/ld+json">...</script>` and place in `<head>` or before `</body>`. Test with ~~schema validator._250251### SERP Preview252253```254SEO Guide: Complete Beginner's Tutorial255yoursite.com/seo-guide/256Learn SEO from scratch with our comprehensive guide...257258▼ What is SEO?259 SEO (Search Engine Optimization) is the practice of optimizing...260▼ How long does SEO take to work?261 SEO typically takes 3-6 months to show significant results...262▼ Is SEO better than paid advertising?263 SEO and paid advertising serve different purposes...264```265```266267## Schema Type Quick Reference268269| Content Type | Schema Type | Key Properties |270|--------------|-------------|----------------|271| Blog Post | BlogPosting/Article | headline, datePublished, author |272| Product | Product | name, price, availability |273| FAQ | FAQPage | Question, Answer |274| How-To | HowTo | step, totalTime |275| Local Business | LocalBusiness | address, geo, openingHours |276| Recipe | Recipe | ingredients, cookTime |277| Event | Event | startDate, location |278| Video | VideoObject | uploadDate, duration |279| Course | Course | provider, name |280| Review | Review | itemReviewed, ratingValue |281282## Tips for Success2832841. **Match visible content** - Schema must reflect what users see2852. **Don't spam** - Only add schema for relevant content2863. **Keep updated** - Update dates and prices when they change2874. **Test thoroughly** - Validate before deploying2885. **Monitor Search Console** - Watch for errors and warnings289290## Schema Type Decision Tree291292> **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.293294295## Reference Materials296297- [Schema Templates](references/schema-templates.md) - Copy-ready JSON-LD templates for all schema types298- [Validation Guide](references/validation-guide.md) - Common errors, required properties, testing workflow299300## Next Best Skill301302- **Primary**: [seo-analysis](../seo-analysis/SKILL.md) — verify implementation with a technical SEO audit.