All posts
SEO6 min read

FAQ and HowTo schema: the fastest structured-data win for answer engines

FAQ and HowTo structured data map cleanly onto how LLMs extract answers. Here is how to implement them well — and the mistakes that get them ignored.

LE
LumenEntity Research
Visibility & AI search team
Share

If you make one structured-data investment for AI visibility, make it FAQ and HowTo. Both types describe content in exactly the shape an answer engine wants: a question paired with a direct answer, or a goal broken into ordered steps. You are not gaming anything — you are labeling your content in the machine's native grammar.

FAQPage done right

A good FAQ answer stands on its own. Assume the model will lift it out of context and read it aloud, so avoid references like "as mentioned above." Keep each answer to two or three sentences of concrete substance.

{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "mainEntity": [{
    "@type": "Question",
    "name": "What is IndexNow?",
    "acceptedAnswer": {
      "@type": "Answer",
      "text": "IndexNow is a protocol for instantly telling search engines that a URL changed."
    }
  }]
}

HowTo for procedures

Use HowTo when your page teaches a repeatable procedure with a clear outcome. List steps in order, keep each step atomic, and name any tools or materials. This is the content answer engines love to reproduce as a numbered list.

The rules that keep it working

  • Mark up only content actually visible to the user on that page.
  • Do not duplicate the same FAQ across dozens of pages — engines flag it.
  • One primary schema type per page; do not stack five competing types.
  • Validate with a structured-data testing tool before you ship.

How to know it is working

Watch two things: rich-result eligibility in your search console of choice, and citation rate for the specific questions you marked up. If a question you answered is being answered by a competitor in ChatGPT or Copilot, your answer is either not crawlable, not concise, or not corroborated elsewhere.

Frequently asked questions

Does FAQ schema still earn rich results?
Eligibility has narrowed over time and varies by engine, but the markup remains valuable for answer engines even when no visual rich result shows.
Can I mark up an FAQ that is hidden behind a toggle?
Yes, as long as the content is present in the HTML and available to the user on that page. Do not mark up content that does not exist on the page.
HowTo or FAQ — which should I use?
Use HowTo for step-by-step procedures with an outcome, and FAQ for discrete question-and-answer pairs. Do not force both onto the same content.
SchemaStructured DataAEOTechnical SEO

Keep reading