FAQ (FAQPage, Question, Answer)
What is FAQ?
An FAQ page includes a series of questions and answers related to a specific topic. When correctly formatted, these pages might qualify for a rich result in Search and an Action on Google Assistant, enhancing your site’s visibility and helping it connect with the appropriate audience.
Kindly Refer Google Doc to know more about FAQ rich result.
What are necessary data for FAQ rich result?
1. FAQ Wrapper (rjs-faq
)
faq.html
<details class="rjs-faq">
<summary class="question">
<!--removed for brevity -->
</summary>
<p class="answer">
<!--removed for brevity -->
</p>
</details>
2. Question (question
)
faq.html
<details class="rjs-faq">
<summary class="question">
Can you provide a content management system (CMS) that allows me to update
the website easily?
</summary>
........<!-- reduced for brevity -->
</details>
3. Answer (answer
)
faq.html
<details class="rjs-faq">
......<!-- reduced for brevity -->
<p class="answer">
Certainly! We take pride in crafting custom
<b>Content Management Systems (CMS) tailored</b> exclusively to your
requirements.
</p>
</details>
Function and parameters
đź’ˇ
By default input file is overwriiten with result so
destination
is optionalThis is only for API method.
We prefer CLI method for keeping it simpler (refer - Working with API & CLI).
func_params.js
const richResultType = 'faq';
const filePath = 'faq.html';
const destination = 'dist/faq.html'; /* optional */
richie([richResultType], filePath, destination);
Example of a Instance
faq.html
<body>
<!-- FAQ-1 -->
<details class="rjs-faq">
<summary class="question">
Can you provide a content management system (CMS) that allows me to update
the website easily?
</summary>
<p class="answer">
<b
>Certainly! We take pride in crafting custom Content Management Systems
(CMS) tailored exclusively to your requirements.</b
>
<!-- reduced for brevity -->
</p>
</details>
<!-- FAQ-2 -->
<details class="rjs-faq">
<summary class="question">
Do you offer any additional services, such as digital marketing, SEO, or
social media management, to help promote the website?
</summary>
<p class="answer">
<b>Absolutely! Beyond website development,</b> Cresteem offers an array of
comprehensive services. Our immersive...
<!-- reduced for brevity -->
</p>
</details>
<!-- FAQ-N of count can be added-->
</body>
Output of a Instance
faq.html
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Can you provide a content management system (CMS) that allows me to update the website easily?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Certainly! We take pride in crafting custom Content Management Systems (CMS) tailored exclusively to your requirements...." <!-- reduced for brevity -->
}
},
{
"@type": "Question",
"name": "Do you offer any additional services, such as digital marketing, SEO, or social media management, to help promote the website?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Absolutely! Beyond website development, Cresteem offers an array of comprehensive services. Our immersive digital marketing strategies are... <!-- reduced for brevity -->"
}
}
]
}
</script>
Let’s see what’s next!