Created
September 3, 2020 01:06
-
-
Save agrtechnology/d2be02ede151bd40f439420aff28f3f1 to your computer and use it in GitHub Desktop.
Example FAQ Schema Markup code referenced from: https://agrtech.com.au/schema-markup-generator/
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
<!-- Schema markup generated by agrtech (agrtech.com.au) --> | |
<script type="application/ld+json"> | |
{ | |
"@context": "https://schema.org", | |
"@type": "FAQPage", | |
"mainEntity": [{ | |
"@type": "Question", | |
"name": "How do I contact support?", | |
"acceptedAnswer": { | |
"@type": "Answer", | |
"text": "You can reach our support team by filling out the form on our contact page here: | |
website.com/contact-us" | |
} | |
},{ | |
"@type": "Question", | |
"name": "How do I update my software to the latest version", | |
"acceptedAnswer": { | |
"@type": "Answer", | |
"text": "Inside the program go to the bottom right-hand corner of the screen and click on the cog icon which will open a menu. From here go ahead and choose update and then click \"download updates\" to install the latest version." | |
} | |
}] | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment