- Schema.org JSON-LD templates (product, event, local-business, faq) - Brand, UI, SEO, and decision guide rules - Working code snippets (vendor-card, schema-inject, deploy-webhook) - JSON schemas for project config validation - Client presets (slc-bride, default) - Self-update protocol with changelog tracking Made-with: Cursor
35 lines
732 B
JSON
35 lines
732 B
JSON
{
|
|
"_meta": {
|
|
"last_updated": "2026-03-06T15:52:00Z",
|
|
"version": "1.0.0",
|
|
"description": "FAQ structured data template (Schema.org JSON-LD)"
|
|
},
|
|
"@context": "https://schema.org",
|
|
"@type": "FAQPage",
|
|
"mainEntity": [
|
|
{
|
|
"@type": "Question",
|
|
"name": "{{QUESTION_1}}",
|
|
"acceptedAnswer": {
|
|
"@type": "Answer",
|
|
"text": "{{ANSWER_1}}"
|
|
}
|
|
},
|
|
{
|
|
"@type": "Question",
|
|
"name": "{{QUESTION_2}}",
|
|
"acceptedAnswer": {
|
|
"@type": "Answer",
|
|
"text": "{{ANSWER_2}}"
|
|
}
|
|
},
|
|
{
|
|
"@type": "Question",
|
|
"name": "{{QUESTION_3}}",
|
|
"acceptedAnswer": {
|
|
"@type": "Answer",
|
|
"text": "{{ANSWER_3}}"
|
|
}
|
|
}
|
|
]
|
|
}
|