Last active
April 15, 2019 13:42
-
-
Save warnakey/a644c3dc3ebc09e94960fcad0ed694db to your computer and use it in GitHub Desktop.
FAQPage Schema JSON-LD
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": "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