| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"version": "22.7", |
| 5 |
"name": "yoast/faq-block", |
| 6 |
"title": "Yoast FAQ", |
| 7 |
"description": "List your Frequently Asked Questions in an SEO-friendly way.", |
| 8 |
"category": "yoast-structured-data-blocks", |
| 9 |
"icon": "editor-ul", |
| 10 |
"keywords": [ |
| 11 |
"FAQ", |
| 12 |
"Frequently Asked Questions", |
| 13 |
"Schema", |
| 14 |
"SEO", |
| 15 |
"Structured Data" |
| 16 |
], |
| 17 |
"textdomain": "wordpress-seo", |
| 18 |
"attributes": { |
| 19 |
"questions": { |
| 20 |
"type": "array" |
| 21 |
}, |
| 22 |
"additionalListCssClasses": { |
| 23 |
"type": "string" |
| 24 |
} |
| 25 |
}, |
| 26 |
"example": { |
| 27 |
"attributes": { |
| 28 |
"questions": [ |
| 29 |
{ |
| 30 |
"id": "faq-question-1", |
| 31 |
"question": "", |
| 32 |
"answer": "", |
| 33 |
"images": [] |
| 34 |
}, |
| 35 |
{ |
| 36 |
"id": "faq-question-2", |
| 37 |
"question": "", |
| 38 |
"answer": "", |
| 39 |
"images": [] |
| 40 |
} |
| 41 |
] |
| 42 |
} |
| 43 |
}, |
| 44 |
"editorScript": "yoast-seo-faq-block", |
| 45 |
"editorStyle": "yoast-seo-structured-data-blocks" |
| 46 |
} |
| 47 |
|