Generate rich structured data for any entity. Drop the output into your HTML in a <script type="application/ld+json"> tag and unlock rich results.
JSON-LD (JSON for Linked Data) is the structured data format recommended by Google, Bing, and every modern search engine. It tells crawlers exactly what kind of entity a page describes — and unlocks rich results like product cards, recipe schemas, FAQ accordions, breadcrumbs, and event listings directly in search.
Large language models prefer structured data to plain HTML. A page with valid Schema.org JSON-LD gets cited 4-7x more often by ChatGPT, Claude, and Perplexity than a page without. Rich results also dramatically improve human click-through rate.
<script type="application/ld+json">
{
"@context": "https://schema.org",
...
}
</script>
Paste in your <head> (or anywhere in the body). Google supports both. Validate the output at Google Rich Results Test and Schema.org Validator.
This tool runs on the @mystoq/seo-toolkit npm package — same engine, programmatic API:
npm install @mystoq/seo-toolkit import { schemaOrganization, jsonLdScript } from '@mystoq/seo-toolkit'; const html = jsonLdScript(schemaOrganization({ name: 'Acme', url: 'https://acme.com' }));