Skip to content

Instantly share code, notes, and snippets.

@patrickcoombe
Created February 18, 2025 18:08
Show Gist options
  • Save patrickcoombe/aa3ef34598a22b93e60b9221eb473fff to your computer and use it in GitHub Desktop.
Save patrickcoombe/aa3ef34598a22b93e60b9221eb473fff to your computer and use it in GitHub Desktop.
json-ld-example-faq
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What is your return policy?",
"acceptedAnswer": {
"@type": "Answer",
"text": "We offer a 30-day return policy on all unused items in their original packaging. Please contact our customer service team to initiate a return."
}
},
{
"@type": "Question",
"name": "How long does shipping take?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Standard shipping typically takes 3-5 business days within the United States. Expedited options are available at checkout."
}
},
{
"@type": "Question",
"name": "Do you offer international shipping?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes, we ship to over 50 countries worldwide. Shipping costs and delivery times vary by location."
}
}
]
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment