Select Schema Type:
Generate Google-compliant structured data code instantly. 8+ schema types, real-time preview, syntax highlighting, zero data collection.
Select Schema Type:
Not all schema types trigger rich results. Use this reference to understand which types can earn enhanced SERP features.
| Schema Type | Rich Result Feature | Required Fields | Priority |
|---|---|---|---|
| Article | Top stories, carousel | headline, datePublished, author | ๐ด High |
| Product | Product snippets (price, availability) | name, price, availability | ๐ด High |
| FAQ | FAQ accordion in SERP | 2+ question/answer pairs | ๐ก Medium |
| Local Business | Knowledge panel, map pack | name, address, phone | ๐ด High |
| Recipe | Recipe carousel, voice search | name, ingredients, instructions | ๐ก Medium |
| Organization | Knowledge panel | name, logo, url | ๐ข Lower |
| Breadcrumb | Breadcrumb path in SERP | itemListElement | ๐ด High |
| Event | Event rich result | name, startDate, location | ๐ก Medium |
JSON-LD (JavaScript Object Notation for Linked Data) is Google's recommended format for adding structured data to web pages. It helps search engines understand your content โ what it is, who wrote it, when it was published, how much it costs, and more. Sites with properly implemented structured data are eligible for rich results (star ratings, price displays, FAQ accordions, recipe cards) that can increase organic click-through rates by 5-30%.
๐ก According to a 2026 study by an SEO analytics firm, pages with valid JSON-LD structured data rank for 4x more long-tail keywords than similar pages without schema markup. Rich results eligibility alone can boost organic CTR by an average of 17%.
Different content types require different schema. Here's a quick decision guide:
Article schema. Include headline, datePublished, and author for eligibility in Google News and Top Stories.Product schema with Offer nested inside. Include price, priceCurrency, and availability to qualify for product rich results.FAQPage schema. Must contain at least 2 question/answer pairs. Your FAQ may appear as an expandable accordion directly in search results.LocalBusiness schema with complete address and phone. Critical for local SEO and Google Maps visibility.Recipe schema with full ingredient list and cooking instructions. Eligible for recipe carousels and voice search results.Organization schema with logo and sameAs (social profiles). Helps Google build your Knowledge Graph panel.The <script type="application/ld+json"> tag can be placed anywhere in the <head> or <body> of your page. Google recommends placing it in the <head> for cleaner page structure, but both locations work equally well for indexing purposes. If you're using multiple schema types on the same page (e.g., Article + Breadcrumb + Organization), include each as a separate JSON-LD block โ do not combine them into a single @graph array unless you're experienced with schema nesting and understand the validation requirements.
<script> block and paste it into the <head> or <body> section of your HTML page. Google recommends the <head> for cleaner organization. The code works immediately โ no server-side changes needed. If using WordPress, you can paste it into your theme's header.php file or use a plugin like "Insert Headers and Footers."<script> block. Do not combine them into a single @graph array unless you're experienced with schema nesting, as validation errors in one type can affect the entire block.All code generation happens in your browser. No data is ever collected, stored, or transmitted. Use it as many times as you need for all your web pages.