HowTo schema still works for AI search engines, even though Google deprecated the rich result in September 2023. The Schema.org type itself was never deprecated, and AI answer engines parse it to extract ordered, citable steps. According to Stackmatix's 2026 schema analysis, roughly 71% of pages cited by ChatGPT and 65% of pages cited inside Google AI Mode carry structured data, including HowTo on procedural queries. This piece busts the "HowTo is dead" myth with data, shows when to use HowTo vs FAQPage vs both, and covers step granularity, real B2B examples, and the JSON-LD pattern that gets cited.

Is HowTo schema still useful after Google deprecated rich results?

Yes. Google deprecated the visual rich result on September 13, 2023, but the underlying Schema.org type is unchanged. AI engines parse HowTo JSON-LD as a structured signal of ordered, procedural content, which they extract differently from prose.

The original announcement is short and specific. Google's Search Central blog post from August 8, 2023 confirmed two things: HowTo rich results would be removed from desktop on September 13, and Search Console reporting for HowTo would sunset within 30-180 days.

What the announcement did not say:

  • That HowTo as a Schema.org type was deprecated
  • That removing HowTo markup was recommended
  • That AI surfaces would stop parsing it

Schema App put it directly: the schema can still be used. It produces no Google rich snippet, but it remains a valid type that downstream parsers, including AI answer engines, continue to consume. The deprecation killed the SERP feature, not the data.

Do AI engines actually parse HowTo structured data?

The strongest evidence is correlational, but it's strong. No major AI engine has officially documented HowTo as a ranking input. The behavior of cited pages, however, points clearly at structured data as a feature in their extraction pipelines.

The numbers from Stackmatix's 2026 structured data analysis:

  • ~71% of ChatGPT-cited pages carry some form of structured data
  • ~65% of pages cited inside Google AI Mode include schema markup
  • 2.5 to 2.7x citation rate for pages using Article + FAQPage + HowTo + Organization vs pages with no schema (BrightEdge, early 2026)

A second data point from the same body of research: pages implementing structured data and FAQ blocks together saw a 44% increase in AI search citations. ChatGPT specifically uses HowTo to understand sequential logic for instructional prompts and FAQPage to extract direct factual pairs for informational queries -- two different jobs, two different schema types.

The practical read: HowTo schema is not officially required, but absent any official ranking signal documentation from OpenAI or Perplexity, the cited pages are telling you what works.

Schema Markup Impact on AI Citation Rates (2026)
No schema
28%
Article + FAQPage + HowTo + Organization
71%
Source: BrightEdge / Stackmatix Schema Markup Guide, 2026

When should you use HowTo vs FAQPage vs both?

HowTo for sequential processes. FAQPage for standalone Q&A. Both only when the page genuinely supports each. The most common implementation mistake is reaching for whichever schema is trendier instead of matching schema to content shape.

The shape test: if reordering the items breaks the meaning, it's HowTo. If each item answers a self-contained question, it's FAQPage.

Here's the decision framework:

Decision factor Use HowTo Use FAQPage Use both
Content shape Sequential steps where order matters Standalone Q&A in any order Tutorial with a Q&A section beneath
User intent 'How do I configure X' 'What is X', 'does X support Y' Procedural plus background context
Extraction target Numbered list inside an AI answer Direct quote pulled into chat Steps for Perplexity, Q&A for ChatGPT
Page examples Setup guides, migrations, API walk-throughs Pricing pages, feature explainers Onboarding docs, API quickstarts

Do not mark up the same content under both types. If your three setup steps also appear as three FAQ questions, AI parsers may discard one or both due to entity conflation. Pick the dominant content shape and use the second schema only for genuinely separate content on the page.

What is the right step granularity for AI extraction?

Three to seven discrete steps is the sweet spot. Below three, the content reads as a flat list and AI engines treat it as an itemized FAQ rather than a process. Above seven, summarization truncates the back half of your steps when an AI engine renders the answer.

Granularity rules that survive contact with AI extractors:

  1. One verb per step name. 'Install the CLI', 'Configure your API key', 'Run the test'. Not 'Install the CLI and configure your API key, then run the test'.
  2. 40-80 words per step text. Long enough to be useful when extracted standalone, short enough to fit a chat reply.
  3. Group with HowToSection past seven steps. Per the Schema.org HowTo spec, HowToSection objects let you nest related steps (e.g. Install, Configure, Test) so the parser still sees clean 3-5 step groups.
  4. HowToDirection for sub-actions. Granular instructions inside a step go in itemListElement as HowToDirection, not as new steps. This preserves the top-level step count.

A worked example: a 14-step database migration guide should not ship as 14 HowToStep entries. Group it as three HowToSection objects (Prepare, Migrate, Verify) of 4-5 HowToStep each. The AI engine sees a 3-section process with clear ordering, which is exactly what it can summarize.

Can a SaaS feature setup page legitimately use HowTo schema?

Yes, if the page actually walks the user through a process. A pure feature description is not HowTo-eligible. A 'how to set up X with our tool' page is.

The legitimacy test has three parts:

  • Is the content sequential? Steps must have a real order. 'Sign up' before 'configure' before 'test'.
  • Does removing the numbering break the meaning? If yes, HowTo applies. If the steps could be bullet points in any order, use a different schema.
  • Does the page describe a complete result? HowTo pages should answer 'how do I accomplish [specific outcome]', not 'what is [feature]'.

Legitimate B2B HowTo targets, as documented in the SaaS Consult schema guide:

  • Integration walk-throughs: 'How to connect Stripe to Notion via Zapier'
  • Migration guides: 'How to migrate from Mailchimp to Customer.io'
  • Setup tutorials: 'How to configure SSO with Okta'
  • API quickstarts: 'How to authenticate your first API request'
  • Troubleshooting flows: 'How to debug failed webhooks'

Illegitimate (use a different schema):

  • Pricing pages -- use Product or Offer
  • Feature overview pages -- use SoftwareApplication
  • Glossary entries -- use DefinedTerm or FAQPage
  • Pure marketing landing pages -- use WebPage

What does HowTo JSON-LD look like in 2026?

A minimum viable HowTo block carries name, totalTime, and an ordered step array, where each step has name and text. Anything beyond that (image, video, supply, tool, estimatedCost) adds extraction richness but is not required for AI parsing.

This article eats its own dog food. The HowTo schema attached to this page covers the 'configure HowTo schema for AI extraction' process. A trimmed version of the JSON-LD:

{
  "@context": "https://schema.org",
  "@type": "HowTo",
  "name": "How to configure HowTo schema for AI extraction in 2026",
  "totalTime": "PT15M",
  "step": [
    {
      "@type": "HowToStep",
      "position": 1,
      "name": "Confirm content is sequential",
      "text": "Verify your page describes ordered steps where reordering breaks meaning. If not, use FAQPage or SoftwareApplication instead."
    },
    {
      "@type": "HowToStep",
      "position": 2,
      "name": "Group into 3-7 top-level steps",
      "text": "If the process has more than seven actions, wrap related steps in HowToSection so each section holds 3-5 steps."
    },
    {
      "@type": "HowToStep",
      "position": 3,
      "name": "Validate and prompt-test",
      "text": "Run the markup through the Schema.org validator and Google Rich Results Test, then ask ChatGPT and Perplexity the procedural question your page answers."
    }
  ]
}

Validation chain: Schema.org validator for spec compliance, then Google's Rich Results Test (which still parses HowTo despite no longer rendering it), then a live prompt test against the AI engines you care about.

Which B2B pages show HowTo schema getting cited?

The B2B pages most consistently cited in AI answers for procedural queries fall into four categories: developer documentation, integration directories, knowledge bases, and migration guides. All four are content shapes where HowTo schema maps cleanly to user intent.

Four patterns that show up in ChatGPT and Perplexity citations on procedural prompts:

  1. Developer docs with explicit ordering (Stripe Docs, Twilio Docs, Atlassian Developer). API quickstarts that read as numbered tutorials and emit HowTo JSON-LD frequently appear in AI answers to 'how do I [action] with [API]' prompts. The combination of HowTo schema, code blocks, and named steps maps to AI summarization with little loss.
  2. Integration directory pages (Zapier app pages, HubSpot App Marketplace). 'Connect X with Y' pages are sequential by nature -- pick trigger, pick action, map fields, test -- and the directories that ship HowTo on these pages get pulled into Perplexity answers for integration questions.
  3. Knowledge base articles with step ordering (Notion Help, Intercom Articles). Help-center articles titled 'How to set up [feature]' that emit HowTo schema show up in ChatGPT answers when users ask product-specific procedural questions.
  4. Migration and import guides (Customer.io migration docs, Webflow CMS imports). These are HowTo-native: the user has a clear before-state and after-state, and the steps are non-negotiable in order. Cited frequently for 'how to migrate from X to Y' prompts.

The pattern across all four: the HowTo schema describes a real process with a clear outcome, the steps are 3-7 top-level, and the page is on a domain with strong topical authority for the surrounding subject. Schema alone does not earn citations -- but on pages that already qualify, it materially raises the citation rate.

What kills HowTo schema for AI extraction?

Five mistakes torpedo HowTo extractability, and four of them are caught by basic validation. AI engines tolerate sloppy markup less than Google ever did, because they treat the schema as a typed contract for the content.

The failure modes that show up most often in audits:

  1. Marking up non-sequential content as steps. Bullet lists where order does not matter should not use HowTo. AI parsers detect the mismatch and downweight the page.
  2. Step text that does not match the visible HTML. If your JSON-LD step says 'Configure your API key' and the visible page heading reads 'Set up authentication', the parser flags entity inconsistency. Schema and HTML must agree.
  3. More than seven top-level steps with no HowToSection grouping. Long flat step arrays get truncated. The back half of your process disappears from AI summaries.
  4. Missing position on each step. Without "position": N, AI engines cannot guarantee ordering. Always emit position even if your steps are in array order.
  5. Duplicating content across HowTo and FAQPage. Same instructional content under two schema types triggers entity conflation. AI engines may discard the entire page from candidate answers.

The validation chain that catches the first four: Schema.org validator for spec, Rich Results Test for parser compatibility, then a manual diff between HTML headings and JSON-LD step names. The fifth is content strategy, not validation -- if your page genuinely needs both schemas, separate the content cleanly.

Decision factorUse HowToUse FAQPageUse both
Content shapeSequential steps with order that mattersStandalone Q&A pairs in any orderTutorial page with a Q&A section beneath the steps
User intentProcedural ('how do I configure X')Informational ('what is X', 'does X support Y')Mixed -- the user wants to do the thing AND understand it
Extraction targetNumbered step list inside an AI answerDirect quote pulled into a chat replySteps for Perplexity, Q&A for ChatGPT, both for Google AIO
Page examplesSetup guides, integration walk-throughs, migrationsPricing pages, feature explainers, glossary entriesOnboarding guides, troubleshooting docs, API quickstarts
Risk if misusedMarking up non-sequential content as steps confuses parsersMarking up procedural content as Q&A loses ordering signalDuplicating the same content under both types triggers entity conflation