Electrician
Electrician is a direct HomeAndConstructionBusiness subtype for licensed electrical contractors. Populate hasCertification with the state licence reference and areaServed with the service radius.
Full example of schema.org/Electrician json-ld markup
The markup is verified as valid with Rich Results Test from Google.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Electrician",
"name": "Lackawanna Electric",
"address": { "@type": "PostalAddress", "streetAddress": "620 Industrial Dr", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" },
"telephone": "+1-570-555-1021",
"openingHours": "Mo-Fr 07:00-19:00, Sa 08:00-14:00",
"priceRange": "$$$",
"areaServed": { "@type": "AdministrativeArea", "name": "Lackawanna County, Pennsylvania" },
"url": "https://xoocode.com/shops/lackawanna-electric"
}
</script>Minimal valid version
The smallest markup that still produces a valid Electrician entity. Use it as the floor. Reach for the advanced example above when you want search engines and AI agents to understand more about your content.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Electrician",
"name": "Lackawanna Electric",
"address": { "@type": "PostalAddress", "streetAddress": "620 Industrial Dr", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" }
}
</script>Google rich results this unlocks
Electrician is a structural type. It does not produce a rich result on its own.
Its value comes from combining it with a primary type whose markup earns a rich result (Article, Product, Event, and so on). Electrician becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.
Common Electrician mistakes
Mistakes that pass validation but silently fail to earn rich results or mislead consumers walking the graph. Avoid these and your markup will be ahead of most sites in the wild.
- 01
Electrician without licence info
WrongElectrician with no hasCertificationRightPopulate hasCertification with licence number and jurisdictionLicensing signals matter for trade searches where users filter by credential.
Schema properties in this example
About the example data
"Lackawanna Electric", a fictional licensed electrical contractor.
Comments
Loading comments...