Free Tool

JSON-LD Generator Schema.org LocalBusiness

Dominate Google Maps and Local SEO. Fill in your business details, and we generate the structured Schema.org code that search engines love. Ready to copy-paste in less than 1 minute.

Configure Schema.org

Fill in the fields below. Only the business name and a minimal address are required for the simplest markup.

Monday
-
Tuesday
-
Wednesday
-
Thursday
-
Friday
-
Saturday
Closed
Sunday
Closed

These will transform into the `sameAs` property, consolidating your local SEO entity.

Generated JSON-LD Code

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "LocalBusiness",
  "name": "Your Business Name",
  "image": "https://example.com/business-image.jpg",
  "@id": "",
  "url": "https://example.com",
  "telephone": "+1234567890",
  "priceRange": "USD",
  "address": {
    "@type": "PostalAddress",
    "streetAddress": "123 Example Street",
    "addressLocality": "New York",
    "postalCode": "10001",
    "addressCountry": "US"
  },
  "openingHoursSpecification": [
    {
      "@type": "OpeningHoursSpecification",
      "dayOfWeek": "Monday",
      "opens": "09:00",
      "closes": "17:00"
    },
    {
      "@type": "OpeningHoursSpecification",
      "dayOfWeek": "Tuesday",
      "opens": "09:00",
      "closes": "17:00"
    },
    {
      "@type": "OpeningHoursSpecification",
      "dayOfWeek": "Wednesday",
      "opens": "09:00",
      "closes": "17:00"
    },
    {
      "@type": "OpeningHoursSpecification",
      "dayOfWeek": "Thursday",
      "opens": "09:00",
      "closes": "17:00"
    },
    {
      "@type": "OpeningHoursSpecification",
      "dayOfWeek": "Friday",
      "opens": "09:00",
      "closes": "17:00"
    }
  ]
}
</script>

Where do I paste the code? Add this script in the <head> tag of your website. In Astro, you can place it directly in your Layout component.