Skip to content

Instantly share code, notes, and snippets.

@dannanelli
Last active July 17, 2023 21:00
Show Gist options
  • Save dannanelli/0c1a001845082a7af0a9ae16f1c165c8 to your computer and use it in GitHub Desktop.
Save dannanelli/0c1a001845082a7af0a9ae16f1c165c8 to your computer and use it in GitHub Desktop.
FAQPage Schema Example Template for Local SEO
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "{{QUESTION #1}}",
"acceptedAnswer": {
"@type": "Answer",
"text": "{{ANSWER #1}}"
}
},
{
"@type": "Question",
"name": "{{QUESTION #2}}",
"acceptedAnswer": {
"@type": "Answer",
"text": "{{ANSWER #2}}"
}
},
{
"@type": "Question",
"name": "{{QUESTION #3}}",
"acceptedAnswer": {
"@type": "Answer",
"text": "{{ANSWER #3}}"
}
},
{
"@type": "Question",
"name": "{{QUESTION #4}}",
"acceptedAnswer": {
"@type": "Answer",
"text": "{{ANSWER #4}}"
}
},
{
"@type": "Question",
"name": "{{QUESTION #5}}",
"acceptedAnswer": {
"@type": "Answer",
"text": "{{ANSWER #5}}"
}
}
]
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment