Generate JSON-LD schema markup for various content types to earn rich search results.
## Schema Markup Generator
Generate JSON-LD schema markup for [PAGE_TYPE]:
**Page Type:** [PAGE_TYPE — article/product/FAQ/how-to/recipe/event/organization/local business]
**URL:** [PAGE_URL]
**Content:** [PAGE_CONTENT_SUMMARY]
**Schema Templates:**
### Article Schema
```json
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "[TITLE]",
"description": "[META_DESCRIPTION]",
"image": {
"@type": "ImageObject",
"url": "[IMAGE_URL]",
"width": [WIDTH],
"height": [HEIGHT]
},
"author": {
"@type": "Person",
"name": "[AUTHOR_NAME]",
"url": "[AUTHOR_URL]"
},
"publisher": {
"@type": "Organization",
"name": "[ORG_NAME]",
"logo": {
"@type": "ImageObject",
"url": "[LOGO_URL]"
}
},
"datePublished": "[DATE]",
"dateModified": "[DATE]"
}
```
### FAQ Schema
```json
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "[QUESTION_1]",
"acceptedAnswer": {
"@type": "Answer",
"text": "[ANSWER_1]"
}
}
]
}
```
### Product Schema
```json
{
"@context": "https://schema.org",
"@type": "Product",
"name": "[PRODUCT_NAME]",
"description": "[DESCRIPTION]",
"image": "[IMAGE_URL]",
"offers": {
"@type": "Offer",
"price": "[PRICE]",
"priceCurrency": "[CURRENCY]",
"availability": "https://schema.org/InStock"
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "[RATING]",
"reviewCount": "[COUNT]"
}
}
```
### How-To Schema
[Provide complete how-to schema with steps]
### Local Business Schema
[Provide complete local business schema with NAP, hours, geo]
### Organization Schema
[Provide complete organization schema]
**Implementation:**
- Add to `<head>` section via `<script type="application/ld+json">`
- Validate with: Google Rich Results Test
- Monitor in: Google Search Console → Enhancements
**Variables:** Replace all [BRACKETED] items with actual page data.Free to copy and use. Compatible with Claude 4 Opus, GPT-5, Llama 4.
Replace all [BRACKETED] variables with your website and SEO details.
Initial release
Sign in and download this prompt to leave a review.