📝Markdown & HTML

Structured Data (JSON-LD)

Schema.org markup for rich search results.

Explanation

JSON-LD helps Google understand your content (products, FAQs, articles) to show star ratings and extra info.

Examples

Organization
Output
{ "@context": "https://schema.org", "@type": "Organization", ... }

Code Examples

JSON-LD
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "SoftwareApplication",
  "name": "Vaima Tools",
  "operatingSystem": "Web",
  "applicationCategory": "DeveloperApplication",
  "offers": {
    "@type": "Offer",
    "price": "0"
  }
}
</script>

💡 Tips

  • Place inside the <head> or at the end of the <body>
  • Validate using Google's Rich Results Test tool
  • Required for "rich snippets" in search results

⚠️ Common Pitfalls

  • Syntax errors in the JSON will make the whole block ignored