faq structured data and schema markup code example

Example: faq structured data and schema markup

<script type="application/ld+json">

{

"@context": "https://schema.org",

"@type": "FAQPage",

"mainEntity": [{

"@type": "Question",

"name": "INSERT QUESTION TEXT HERE",

"acceptedAnswer": {

"@type": "Answer",

"text": "INSERT ANSWER TEXT HERE"

}

}, {

"@type": "Question",

"name": "INSERT QUESTION TEXT HERE",

"acceptedAnswer": {

"@type": "Answer",

"text": "INSERT ANSWER TEXT HERE"

}

}, {

"@type": "Question",

"name": "INSERT QUESTION TEXT HERE",

"acceptedAnswer": {

"@type": "Answer",

"text":"INSERT ANSWER TEXT HERE"}

}]

}

</script>