> For the complete documentation index, see [llms.txt](https://sygnal.gitbook.io/sygnal-webflow-components/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://sygnal.gitbook.io/sygnal-webflow-components/cc/sygnal-seo/faq-json-ld.md).

# FAQ JSON-LD ⏸️

{% hint style="warning" %}
**UNDER DEVELOPMENT** \
Not currently available to the public.&#x20;

Awaiting some enhancements to Code Components before this can be build properly for SSR.  \
Might consider CSR tests. &#x20;
{% endhint %}

{% hint style="danger" %}
Google [requires](https://developers.google.com/search/docs/appearance/structured-data/faqpage#:~:text=If%20your%20government%2Dfocused%20or%20health%2Dfocused%20site%20has%20a%20list%20of%20questions%20and%20answers%2C%20you%20can%20use%20FAQPage%20structured%20data%20to%20help%20people%20find%20that%20information%20on%20Google.) that FAQ JSON-LD only be used on **government-focused** or **health-focused** sites.&#x20;
{% endhint %}

Goals;

* Easy FAQ creation
* CMS binding support
* Question as plaintext
* Answer as richtext or plaintext ( prefer, or boolean switch )&#x20;

## Schema Notes

* Question text is plaintext
* Answer text can be limited HTML&#x20;

```html
    <script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@type": "FAQPage",
      "mainEntity": [{
        "@type": "Question",
        "name": "How to find an apprenticeship?",
        "acceptedAnswer": {
          "@type": "Answer",
          "text": "<p>We provide an official service to search through available apprenticeships. To get started, create an account here, specify the desired region, and your preferences. You will be able to search through all officially registered open apprenticeships.</p>"
        }
      }, {
        "@type": "Question",
        "name": "Whom to contact?",
        "acceptedAnswer": {
          "@type": "Answer",
          "text": "You can contact the apprenticeship office through our official phone hotline above, or with the web-form below. We generally respond to written requests within 7-10 days."
        }
      }]
    }
    </script>
```

## Technical Notes&#x20;

* Component type: TBD&#x20;

{% embed url="<https://developers.google.com/search/docs/appearance/structured-data/faqpage>" %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://sygnal.gitbook.io/sygnal-webflow-components/cc/sygnal-seo/faq-json-ld.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
