Complete Guide to HowTo Schema — Why It Still Matters After Google Rich Results Removal
What Is HowTo Schema
HowTo schema reports step-by-step guide and tutorial content as structured data. It applies to procedural content flowing "Step 1 → Step 2 → Step 3."
⚠️ Google Rich Results Removal — Status Since 2023
⚠️ Important Google completely removed HowTo rich results from both desktop and mobile in 2023. Google official update records (verified June 2026) state "this rich result is no longer shown in search results."
Many still follow outdated guides saying "HowTo schema makes step-by-step cards appear in search." There is currently no visual exposure effect in Google Search.
Why It Still Matters — AEO Perspective
HowTo schema provides structural signals to AI answer engines separate from Google rich results.
- Step extraction: When ChatGPT, Perplexity, Claude, and others answer "how to~," they can use the step array specified in HowTo schema as a structural source.
- Content credibility: Content with structured data provides clearer intent signals to AI systems.
- Future-proofing: Standards in the AI search environment continue to evolve. If HowTo schema implementation cost is low, maintaining it is advantageous.
However, HowTo schema alone does not guarantee AI citation. Content quality and E-E-A-T signals matter more.
Property Reference
| Property | Required | Type | Description |
|---|---|---|---|
| name | Recommended | Text | Guide title |
| step | Recommended | HowToStep[] | Step array |
| step.name | Recommended | Text | Step title |
| step.text | Recommended | Text | Step description |
| step.image | Optional | ImageObject | Step image |
| step.url | Optional | URL | Step anchor URL |
| totalTime | Optional | Duration (ISO 8601) | Total time required |
| estimatedCost | Optional | MonetaryAmount | Estimated cost |
| tool | Optional | HowToTool[] | Required tools |
| supply | Optional | HowToSupply[] | Required materials |
| image | Optional | ImageObject | Representative guide image |
Minimal Example
{
"@context": "https://schema.org",
"@type": "HowTo",
"name": "How to Register a Site in Google Search Console",
"step": [
{
"@type": "HowToStep",
"name": "Access Search Console",
"text": "Go to search.google.com/search-console and click 'Add property'."
},
{
"@type": "HowToStep",
"name": "Choose URL prefix method",
"text": "Select the 'URL prefix' tab and enter your site URL."
},
{
"@type": "HowToStep",
"name": "Verify ownership",
"text": "Choose the HTML meta tag method, insert the provided code in your site's <head>, and click 'Verify'."
}
]
}
Recommended Example (Time, Tools, Images Included)
{
"@context": "https://schema.org",
"@type": "HowTo",
"name": "How to Submit a Sitemap to Naver Search Advisor",
"totalTime": "PT10M",
"tool": [
{
"@type": "HowToTool",
"name": "Naver Search Advisor account"
},
{
"@type": "HowToTool",
"name": "Sitemap file (sitemap.xml)"
}
],
"step": [
{
"@type": "HowToStep",
"position": 1,
"name": "Access Search Advisor",
"text": "Go to searchadvisor.naver.com and log in with your Naver account.",
"url": "https://example.co.kr/guide/naver-sitemap#step-1"
},
{
"@type": "HowToStep",
"position": 2,
"name": "Register site",
"text": "In Webmaster Tools → 'Add Site', enter the site URL and complete ownership verification.",
"url": "https://example.co.kr/guide/naver-sitemap#step-2"
},
{
"@type": "HowToStep",
"position": 3,
"name": "Submit sitemap",
"text": "Select the registered site → 'Request' → 'Submit Sitemap', enter the sitemap.xml URL, and confirm.",
"url": "https://example.co.kr/guide/naver-sitemap#step-3"
}
]
}
Adaptation for the Korean Market
Using anchor links (#step-1 format) in step.url enables direct links to each step. Korean guide content can use Korean for tool names and step titles without schema validity issues.
Combination with Other Schemas
- Article/BlogPosting: Nest HowTo in Article to report author and publish date together
- FAQPage: Add FAQPage schema if the guide ends with an FAQ section
Validation Methods
- Schema Markup Validator: https://validator.schema.org — Google Rich Results Test may show HowTo as unsupported for rich results
- Verifying structure validity with Schema Markup Validator is the practical approach
Frequently Asked Questions
Q. Does HowTo schema make step-by-step cards appear in Google?
A. No. Google completely removed HowTo rich results in 2023. Step-by-step visual exposure in Google Search is not currently supported.
Q. Should I delete HowTo schema then?
A. Deletion is not required. From an AEO perspective, it can provide structural signals for AI answer engine step extraction, and maintaining it is reasonable if implementation cost is low.
Q. Do AI answer engines actually use HowTo schema?
A. There is no official documentation that AI answer engines prioritize HowTo schema for citation. However, structured step information can act as a content quality signal.
References
- Google official HowTo documentation (including removal notice): https://developers.google.com/search/docs/appearance/structured-data/how-to (verified June 2026)
- Schema.org HowTo: https://schema.org/HowTo