FAQ JSON-LD ⏸️
UNDER DEVELOPMENT Not currently available to the public.
Awaiting some enhancements to Code Components before this can be build properly for SSR. Might consider CSR tests.
Google requires that FAQ JSON-LD only be used on government-focused or health-focused sites.
Goals;
Easy FAQ creation
CMS binding support
Question as plaintext
Answer as richtext or plaintext ( prefer, or boolean switch )
Schema Notes
Question text is plaintext
Answer text can be limited HTML
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [{
"@type": "Question",
"name": "How to find an apprenticeship?",
"acceptedAnswer": {
"@type": "Answer",
"text": "<p>We provide an official service to search through available apprenticeships. To get started, create an account here, specify the desired region, and your preferences. You will be able to search through all officially registered open apprenticeships.</p>"
}
}, {
"@type": "Question",
"name": "Whom to contact?",
"acceptedAnswer": {
"@type": "Answer",
"text": "You can contact the apprenticeship office through our official phone hotline above, or with the web-form below. We generally respond to written requests within 7-10 days."
}
}]
}
</script>
Technical Notes
Last updated