Files
marka/registry/schema-org/FAQPage.schema.json
Max Richter c687eff53d big tings
2025-08-17 15:16:17 +02:00

14 lines
707 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:FAQPage",
"title": "FAQPage",
"description": "A [[FAQPage]] is a [[WebPage]] presenting one or more \"[Frequently asked questions](https://en.wikipedia.org/wiki/FAQ)\" (see also [[QAPage]]).",
"type": "object",
"allOf": [
{
"description": "A web page. Every web page is implicitly assumed to be declared to be of type WebPage, so the various properties about that webpage, such as breadcrumb may be used. We recommend explicit declaration if these properties are specified, but if they are found outside of an itemscope, they will be assumed to be about the page.",
"$ref": "schema:WebPage"
}
]
}