Generate JSON-LD schema markup for your website. Create structured data for Articles, Products, LocalBusiness, Events, Person, and Organization schemas.
Schema markup (structured data) is a standardized format for providing information about a page and classifying its content. Using JSON-LD format recommended by Google, you can help search engines understand your content better and potentially earn rich results like star ratings, event listings, and FAQ expansions in search results.
JSON-LD = { "@context": "https://schema.org", "@type": "[SchemaType]", ...properties }JSON-LD (JavaScript Object Notation for Linked Data) wraps structured data in a <script> tag. Each schema type has required and recommended properties defined by Schema.org that search engines use to create rich results.
| Input | Output |
|---|---|
| Type: Article, Name: "How to Bake Bread", URL: "example.com/bread" | {"@context":"https://schema.org","@type":"Article","name":"How to Bake Bread","url":"example.com/bread"} |
| Type: Product, Name: "Widget Pro", Price: "$29.99" | {"@context":"https://schema.org","@type":"Product","name":"Widget Pro","offers":{"price":"29.99"}} |
| Type: LocalBusiness, Name: "Joes Pizza" | {"@context":"https://schema.org","@type":"LocalBusiness","name":"Joes Pizza"} |