We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Product data sheets pairing Product specs with a TechArticle explainer, FAQs, and breadcrumb navigation.
Captures the product with pricing/availability for the data sheet.
Provides the explanatory/narrative part of the data sheet.
Answers common spec/compatibility questions.
Provides navigation context for the data sheet page.
Ensure every applicable required property is present in your implementation. Nested props reference their parent objects (for example, `offers.priceCurrency`).
Paste as a single script tag. Keep product details, offer data, shipping/returns, and FAQ answers in sync with the page.
[
{
"@context": "https://schema.org",
"@type": "Product",
"@id": "https://www.example.com/products/edge-router-x#product",
"name": "Edge Router X",
"description": "Compact gigabit router with dual WAN, hardware offload, and VLAN segmentation.",
"image": [
"https://www.example.com/images/edge-router-x-front.webp",
"https://www.example.com/images/edge-router-x-ports.webp"
],
"sku": "ER-X-100",
"brand": { "@type": "Brand", "name": "Example Networks" },
"category": "Networking Equipment",
"offers": {
"@type": "Offer",
"price": "129.00",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"url": "https://www.example.com/products/edge-router-x#buy"
}
},
{
"@context": "https://schema.org",
"@type": "TechArticle",
"@id": "https://www.example.com/products/edge-router-x#datasheet",
"headline": "Edge Router X — Technical Data Sheet",
"description": "Detailed specs, performance metrics, and deployment guidance for the Edge Router X.",
"datePublished": "2025-02-05",
"dateModified": "2025-02-05",
"url": "https://www.example.com/products/edge-router-x",
"author": { "@type": "Organization", "name": "Example Networks" },
"about": { "@id": "https://www.example.com/products/edge-router-x#product" },
"publisher": { "@type": "Organization", "name": "Example Networks" }
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What throughput does hardware offload support?",
"acceptedAnswer": {
"@type": "Answer",
"text": "With hardware offload enabled, the Edge Router X supports up to 1 Gbps aggregate throughput."
}
},
{
"@type": "Question",
"name": "Is it fanless and rack-mountable?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. It is fanless and includes an optional rack shelf for 1U mounting in pairs."
}
},
{
"@type": "Question",
"name": "Does it support IPv6 and VLANs?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. It supports IPv4/IPv6 dual-stack, 802.1Q VLANs, and multiple WAN failover policies."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Products", "item": "https://www.example.com/products" },
{ "@type": "ListItem", "position": 3, "name": "Edge Router X", "item": "https://www.example.com/products/edge-router-x" }
]
}
]Yes. Product holds specs/offers; TechArticle describes the data sheet content. Link them via about.@id.
Add one Product per SKU with distinct @id/offer data. Ensure the page shows each SKU represented in JSON-LD.