| name | local-schema-markup |
| description | Use when adding structured data for local business. LocalBusiness schema helps Google understand business details.
|
Local Schema Markup
LocalBusiness schema: business name, address, phone, hours, geo coordinates. Required for local SEO. Earn rich snippets in Maps and SERPs.
LocalBusiness schema example
<script type='application/ld+json'>
{
'@context': 'https://schema.org',
'@type': 'LocalBusiness',
'name': 'CardPrepAI',
'image': 'https://cardprepai.com/logo.png',
'address': {
'@type': 'PostalAddress',
'streetAddress': '123 Main St',
'addressLocality': 'Howell',
'addressRegion': 'MI',
'postalCode': '48843',
'addressCountry': 'US'
},
'geo': {
'@type': 'GeoCoordinates',
'latitude': '42.6075',
'longitude': '-83.9294'
},
'telephone': '+15175551234',
'openingHoursSpecification': {
'@type': 'OpeningHoursSpecification',
'dayOfWeek': ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'],
'opens': '09:00',
'closes': '17:00'
}
}
</script>
Per-page implementation
Add to:
- Homepage
- Contact page
- Location pages (if multi-location)
- About page
Not necessary on every page — focus on local-relevant pages.
Validation
- Google Rich Results Test
- Schema.org Validator
- Search Console > Structured data report
- Verify accuracy (don't fake hours/address)
Where this fits in the X3 empire
Local schema implementation for X3 entities.