SelfStorage
SelfStorage is a direct LocalBusiness subtype for self-storage facilities: drive-up units, climate-controlled storage, portable storage, vehicle storage. Unit sizes and prices belong in Offer entries.
Full example of schema.org/SelfStorage 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": "SelfStorage",
"name": "Dunmore Self Storage",
"address": { "@type": "PostalAddress", "streetAddress": "2900 Industrial Dr", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" },
"telephone": "+1-570-555-2051",
"openingHours": "Mo-Su 06:00-22:00",
"priceRange": "$$",
"amenityFeature": [
{ "@type": "LocationFeatureSpecification", "name": "Climate controlled units", "value": true },
{ "@type": "LocationFeatureSpecification", "name": "24/7 access", "value": true },
{ "@type": "LocationFeatureSpecification", "name": "Vehicle storage", "value": true }
],
"url": "https://xoocode.com/shops/dunmore-self-storage"
}
</script>Minimal valid version
The smallest markup that still produces a valid SelfStorage 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": "SelfStorage",
"name": "Dunmore Self Storage",
"address": { "@type": "PostalAddress", "streetAddress": "2900 Industrial Dr", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" }
}
</script>Google rich results this unlocks
SelfStorage 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). SelfStorage becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.
Common SelfStorage 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
SelfStorage without climate/access features
WrongSelfStorage with no amenityFeatureRightPopulate amenityFeature with climate control, 24/7 access, vehicle storage, etc.Storage searches filter by feature (climate, access hours). Missing features misses narrow buyer intents.
Schema properties in this example
About the example data
"Dunmore Self Storage", a fictional climate-controlled storage facility.
Comments
Loading comments...