MovingCompany
MovingCompany is a direct HomeAndConstructionBusiness subtype for residential and commercial moving services. Populate areaServed for service zones and hasCertification for DOT / state authority.
Full example of schema.org/MovingCompany 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": "MovingCompany",
"name": "Dunmore Movers",
"address": { "@type": "PostalAddress", "streetAddress": "720 Industrial Dr", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" },
"telephone": "+1-570-555-1821",
"openingHours": "Mo-Sa 07:00-19:00",
"priceRange": "$$",
"areaServed": [{ "@type": "State", "name": "Pennsylvania" }, { "@type": "State", "name": "New York" }, { "@type": "State", "name": "New Jersey" }],
"url": "https://xoocode.com/shops/dunmore-movers"
}
</script>Minimal valid version
The smallest markup that still produces a valid MovingCompany 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": "MovingCompany",
"name": "Dunmore Movers",
"address": { "@type": "PostalAddress", "streetAddress": "720 Industrial Dr", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" }
}
</script>Google rich results this unlocks
MovingCompany 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). MovingCompany becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.
Common MovingCompany 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
MovingCompany vs SelfStorage
WrongMovingCompany for a storage facilityRightSelfStorage for storage-only businesses; MovingCompany for moving servicesDifferent buyer intents; some businesses do both but should pick the primary offering.
Schema properties in this example
Also mentioned in 1 other example
MovingCompany also appears in HomeAndConstructionBusiness. See the full MovingCompany schema page for every reference.
About the example data
"Dunmore Movers", a fictional local and long-distance moving company.
Comments
Loading comments...