ComputerStore
ComputerStore is a direct Store subtype for shops selling desktops, laptops, peripherals, and accessories. It adds no properties of its own.
For shops that primarily sell mobile phones, prefer MobilePhoneStore. For general consumer electronics, prefer ElectronicsStore.
Full example of schema.org/ComputerStore 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": "ComputerStore",
"name": "Dunmore Computers",
"address": { "@type": "PostalAddress", "streetAddress": "78 Main St", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" },
"telephone": "+1-570-555-0341",
"openingHours": "Mo-Sa 10:00-19:00",
"priceRange": "$$$",
"url": "https://xoocode.com/shops/dunmore-computers"
}
</script>Minimal valid version
The smallest markup that still produces a valid ComputerStore 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": "ComputerStore",
"name": "Dunmore Computers",
"address": { "@type": "PostalAddress", "streetAddress": "78 Main St", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" }
}
</script>Google rich results this unlocks
ComputerStore 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). ComputerStore becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.
Common ComputerStore 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
Using ElectronicsStore for a computer-only shop
WrongElectronicsStore on a shop that only sells PCs and peripheralsRightComputerStore for PC-first retailers; ElectronicsStore for broader consumer electronicsSpecific subtypes catch niche discovery queries ('computer repair near me', 'laptop shop').
Schema properties in this example
About the example data
"Dunmore Computers", a fictional independent PC and laptop retailer in Dunmore.
Comments
Loading comments...