FAQ Essential Schema Example
SEO Help and Tips
FAQ Essential Schema Example
Here's an example of a schema markup for a Frequently Asked Questions (FAQ) page:
{
"@context": "http://schema.org",
"@type": "FAQPage",
"name": "Frequently Asked Questions",
"url": "https://www.yourwebsite.com/faq",
"mainEntity": [
{
"@type": "Question",
"name": "Question 1",
"acceptedAnswer": {
"@type": "Answer",
"text": "Answer to question 1."
}
},
{
"@type": "Question",
"name": "Question 2",
"acceptedAnswer": {
"@type": "Answer",
"text": "Answer to question 2."
}
},
{
"@type": "Question",
"name": "Question 3",
"acceptedAnswer": {
"@type": "Answer",
"text": "Answer to question 3."
}
}
]
}
In this example:
"@type": "FAQPage" indicates that the schema markup is for an FAQ page.
"name" represents the title or name of the FAQ page.
"url" specifies the URL of the FAQ page.
"mainEntity" contains an array of questions and their corresponding answers.
Each question-answer pair consists of "@type": "Question" and "@type": "Answer" respectively.
"name" represents the question itself.
"acceptedAnswer" contains the accepted answer to the question, with
"@type": "Answer" and the text of the answer.
You can expand the "mainEntity" array with additional question-answer
pairs to cover your FAQ content. Remember to adjust the "name" and
"text" values to match your actual questions and answers.
Comments
Post a Comment
Thanks for your Comments.