Plumber
Plumber is a direct HomeAndConstructionBusiness subtype for plumbing contractors: residential repair, commercial installation, emergency service. It adds no properties of its own. Populate areaServed to carry service-area radius.
Full example of schema.org/Plumber 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": "Plumber",
"name": "Dunmore Plumbing",
"address": { "@type": "PostalAddress", "streetAddress": "610 Industrial Dr", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" },
"telephone": "+1-570-555-1011",
"openingHours": "Mo-Su 00:00-23:59",
"priceRange": "$$$",
"areaServed": { "@type": "AdministrativeArea", "name": "Lackawanna County, Pennsylvania" },
"url": "https://xoocode.com/shops/dunmore-plumbing"
}
</script>Minimal valid version
The smallest markup that still produces a valid Plumber 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": "Plumber",
"name": "Dunmore Plumbing",
"address": { "@type": "PostalAddress", "streetAddress": "610 Industrial Dr", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" }
}
</script>Google rich results this unlocks
Plumber 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). Plumber becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.
Common Plumber 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
Plumber without areaServed
WrongPlumber with just an addressRightPopulate areaServed so search engines understand the service radiusService-area businesses rely on areaServed to match local searches beyond the storefront address.
Schema properties in this example
Also mentioned in 1 other example
Plumber also appears in HomeAndConstructionBusiness. See the full Plumber schema page for every reference.
About the example data
"Dunmore Plumbing", a fictional 24/7 plumbing contractor.
Comments
Loading comments...