Skip to content

Instantly share code, notes, and snippets.

@warnakey
Last active April 15, 2019 13:42
Show Gist options
  • Save warnakey/a644c3dc3ebc09e94960fcad0ed694db to your computer and use it in GitHub Desktop.
Save warnakey/a644c3dc3ebc09e94960fcad0ed694db to your computer and use it in GitHub Desktop.
FAQPage Schema JSON-LD
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "FAQPage",
"hasPart": [{
"@type": "Question",
"name": "What is a cat?",
"text": "What is a cat?",
"author": {
"@type": "Organization",
"name": "Some Organization"
},
"dateCreated": "2017-08-08T10:08:00-05:00",
"answerCount": "1",
"acceptedAnswer": {
"@type": "Answer",
"text": "(The text of the accepted answer goes here...).",
"url": "https://www.example.com",
"dateCreated": "2017-08-08T10:08:00-05:00",
"author": {
"@type": "Organization",
"name": "Some Organization"
}
}
}, {
"@type": "Question",
"name": "What is a cat?",
"text": "What is a cat?",
"author": {
"@type": "Organization",
"name": "Some Organization"
},
"dateCreated": "2017-08-08T10:08:00-05:00",
"answerCount": "1",
"acceptedAnswer": {
"@type": "Answer",
"text": "(The text of the accepted answer goes here...).",
"url": "https://www.example.com",
"dateCreated": "2017-08-08T10:08:00-05:00",
"author": {
"@type": "Organization",
"name": "Some Organization"
}
}
}, {
"@type": "Question",
"name": "What is a cat?",
"text": "What is a cat?",
"author": {
"@type": "Organization",
"name": "Some Organization"
},
"dateCreated": "2017-08-08T10:08:00-05:00",
"answerCount": "1",
"acceptedAnswer": {
"@type": "Answer",
"text": "(The text of the accepted answer goes here...).",
"url": "https://www.example.com",
"dateCreated": "2017-08-08T10:08:00-05:00",
"author": {
"@type": "Organization",
"name": "Some Organization"
}
}
}]
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment