ai-ops-templates/templates/schema-local-business.json
DMleadgen 3cb8d3cb3f Initial commit: AI Ops Templates repository
- Schema.org JSON-LD templates (product, event, local-business, faq)
- Brand, UI, SEO, and decision guide rules
- Working code snippets (vendor-card, schema-inject, deploy-webhook)
- JSON schemas for project config validation
- Client presets (slc-bride, default)
- Self-update protocol with changelog tracking

Made-with: Cursor
2026-03-06 16:03:31 -07:00

59 lines
1.6 KiB
JSON

{
"_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}}"
]
}