{ "_meta": { "last_updated": "2026-03-06T15:52:00Z", "version": "1.0.0", "description": "Local Business structured data template (Schema.org JSON-LD)" }, "@context": "https://schema.org", "@type": "{{BUSINESS_TYPE}}", "name": "{{BUSINESS_NAME}}", "description": "{{BUSINESS_DESCRIPTION}}", "image": "{{BUSINESS_IMAGE_URL}}", "url": "{{BUSINESS_URL}}", "telephone": "{{PHONE}}", "email": "{{EMAIL}}", "address": { "@type": "PostalAddress", "streetAddress": "{{STREET_ADDRESS}}", "addressLocality": "{{CITY}}", "addressRegion": "{{STATE}}", "postalCode": "{{POSTAL_CODE}}", "addressCountry": "{{COUNTRY}}" }, "geo": { "@type": "GeoCoordinates", "latitude": "{{LATITUDE}}", "longitude": "{{LONGITUDE}}" }, "openingHoursSpecification": [ { "@type": "OpeningHoursSpecification", "dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"], "opens": "{{WEEKDAY_OPEN}}", "closes": "{{WEEKDAY_CLOSE}}" }, { "@type": "OpeningHoursSpecification", "dayOfWeek": ["Saturday"], "opens": "{{SAT_OPEN}}", "closes": "{{SAT_CLOSE}}" }, { "@type": "OpeningHoursSpecification", "dayOfWeek": ["Sunday"], "opens": "{{SUN_OPEN}}", "closes": "{{SUN_CLOSE}}" } ], "priceRange": "{{PRICE_RANGE}}", "aggregateRating": { "@type": "AggregateRating", "ratingValue": "{{RATING_VALUE}}", "reviewCount": "{{REVIEW_COUNT}}" }, "sameAs": [ "{{FACEBOOK_URL}}", "{{INSTAGRAM_URL}}", "{{TWITTER_URL}}" ] }