Sample output

See what the generated LocalBusiness schema looks like.

This sample shows the kind of copy-ready JSON-LD script the generator creates for a single local business location. Use it as a preview, then generate your own version with real public business details.

Script tag previewJSON-LD
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Dentist",
  "name": "Brightside Dental Care",
  "url": "https://www.example-dental.com",
  "telephone": "+1-555-012-3456",
  "address": {
    "@type": "PostalAddress",
    "streetAddress": "123 Main Street",
    "addressLocality": "Austin",
    "addressRegion": "TX",
    "postalCode": "78701",
    "addressCountry": "US"
  },
  "description": "A friendly local dental clinic offering preventive care, whitening, and family dentistry.",
  "priceRange": "$$",
  "image": "https://www.example-dental.com/images/office.jpg",
  "sameAs": [
    "https://www.facebook.com/exampledental"
  ],
  "openingHours": [
    "Mo-Fr 09:00-17:00",
    "Sa 10:00-14:00"
  ]
}
</script>