Schema Markup Generator
Generate JSON-LD structured data for rich snippets and AI search enhancement.
When This Skill Triggers
- "structured data", "JSON-LD", "schema markup"
- "rich snippets", "rich results"
- "FAQ schema", "Product schema", "HowTo schema"
- "add schema to my site", "schema.org"
- "Product structured data", "Organization schema"
What This Skill Does
- FAQ Schema — Q&A content for rich snippets
- Product Schema — E-commerce product data (price, availability, reviews)
- HowTo Schema — Step-by-step instructions
- Organization Schema — Company information
- Breadcrumb Schema — Navigation path
- Local Business Schema — For location-based businesses
Quick Start
Add FAQ schema to our product pages
Create Product schema for our tractor listings
Add structured data for a how-to guide page
Common Schema Types
| Schema Type |
Use Case |
| FAQPage |
Q&A content, support pages |
| Product |
E-commerce products |
| HowTo |
Step-by-step guides |
| Organization |
Company info |
| LocalBusiness |
Store locations |
| BreadcrumbList |
Navigation trails |
| Article |
Blog posts, news |
| Video |
Video content |
Example: FAQ Schema
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [{
"@type": "Question",
"name": "What tractors do you export?",
"acceptedAnswer": {
"@type": "Answer",
"text": "We export 25-180HP tractors..."
}
}]
}
Validation
Reference
Original TopRank implementation: seo/schema-markup-generator/SKILL.md
1---2name: schema-markup-generator3description: Schema Markup Generator4---5# Schema Markup Generator67Generate JSON-LD structured data for rich snippets and AI search enhancement.89## When This Skill Triggers1011- "structured data", "JSON-LD", "schema markup"12- "rich snippets", "rich results"13- "FAQ schema", "Product schema", "HowTo schema"14- "add schema to my site", "schema.org"15- "Product structured data", "Organization schema"1617## What This Skill Does18191. **FAQ Schema** — Q&A content for rich snippets202. **Product Schema** — E-commerce product data (price, availability, reviews)213. **HowTo Schema** — Step-by-step instructions224. **Organization Schema** — Company information235. **Breadcrumb Schema** — Navigation path246. **Local Business Schema** — For location-based businesses2526## Quick Start2728```29Add FAQ schema to our product pages30```3132```33Create Product schema for our tractor listings34```3536```37Add structured data for a how-to guide page38```3940## Common Schema Types4142| Schema Type | Use Case |43|-------------|----------|44| FAQPage | Q&A content, support pages |45| Product | E-commerce products |46| HowTo | Step-by-step guides |47| Organization | Company info |48| LocalBusiness | Store locations |49| BreadcrumbList | Navigation trails |50| Article | Blog posts, news |51| Video | Video content |5253## Example: FAQ Schema5455```json56{57 "@context": "https://schema.org",58 "@type": "FAQPage",59 "mainEntity": [{60 "@type": "Question",61 "name": "What tractors do you export?",62 "acceptedAnswer": {63 "@type": "Answer",64 "text": "We export 25-180HP tractors..."65 }66 }]67}68```6970## Validation7172- Use Google's Rich Results Test: https://search.google.com/test/rich-results73- Use Schema.org Validator: https://validator.schema.org/7475## Reference7677Original TopRank implementation: `seo/schema-markup-generator/SKILL.md`