Last active
July 17, 2023 21:00
-
-
Save dannanelli/0c1a001845082a7af0a9ae16f1c165c8 to your computer and use it in GitHub Desktop.
FAQPage Schema Example Template for Local SEO
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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