- JSON-LD Present: Only Organization schema found.
- No Article/BlogPosting/FAQPage/BreadcrumbList/Product/HowTo schema.
- FAQ: Present in HTML/accordions but no FAQPage schema.
- Author/Date: Not shown in visible content or markup.
Impact & Risk: No structured data = no eligibility for Article/FAQ rich results. Limits voice & featured snippet presence.
Repair Recommendations:
- Add Article/BlogPosting schema (use top heading as headline, brand as author).
- Add FAQPage JSON-LD referencing on-page FAQs.
- (Optional) Add BreadcrumbList/Product schemas.
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "What's Holding Back Your Modern Family?",
"author": {
"@type": "Organization",
"name": "Lockin"
},
"datePublished": "[YYYY-MM-DD]",
"dateModified": "[YYYY-MM-DD]",
"image": [
"https://lockin.com/cdn/shop/files/20250912-175857.jpg?v=1757671169&width=1200"
],
"publisher": {
"@type": "Organization",
"name": "Lockin",
"logo": {
"@type": "ImageObject",
"url": "https://lockin.com/cdn/shop/files/Group.png?v=1742614425&width=90"
}
},
"mainEntityOfPage": "https://lockin.com/pages/modern-family"
}
FAQPage Example (supplemental):
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Can I Install the Lockin Veno Pro Video Smart Lock on Any Door Type?",
"acceptedAnswer": { "@type": "Answer", "text": "It is suitable for doors that meet the following conditions: Material: Wooden doors. Door thickness: 35mm (1 3/8\") - 55mm (2 1/8\")." }
},
{
"@type": "Question",
"name": "Does the Veno Pro Video Smart Lock Automatically Lock?",
"acceptedAnswer": { "@type": "Answer", "text": "Yes, the Lockin Veno Pro... (summarized answer as in page HTML) ..." }
}
// ...repeat for other FAQs
]
}