Generate JSON-LD structured data for Article, Product, LocalBusiness, and Person schemas. Help search engines understand your content for rich results.
Structured data (Schema.org) helps search engines understand your page content and can qualify your site for rich results like star ratings, product info, FAQs, and more in search results. JSON-LD is Google's recommended format for structured data, embedded in a script tag in the page head.
JSON-LD = <script type="application/ld+json">{ "@context": "schema.org", "@type": "[Type]", ... }</script>Each structured data type has required and recommended properties defined by Schema.org. The @context is always "https://schema.org", @type specifies the schema, and properties provide the data. Google uses this to create rich snippets, knowledge panels, and other enhanced search features.
| Input | Output |
|---|---|
| Type: Article, Name: "How to Bake Bread", URL: example.com/bread | <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Article", "name": "How to Bake Bread", "url": "https://example.com/bread" } </script> |
| Type: Product, Name: "Widget Pro", Description: "Best widget ever" | <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Product", "name": "Widget Pro", "description": "Best widget ever" } </script> |
| Type: LocalBusiness, Name: "Joes Pizza", URL: example.com | <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "LocalBusiness", "name": "Joes Pizza", "url": "https://example.com" } </script> |