Skip to content
Browse all guides

Issue #149 · important

Issue 149

What is this issue?

Tutorial or step-by-step guide pages are missing HowTo schema, reducing eligibility for Google's step-expansion rich results and voice search step readout.

Without HowTo schema:

  • Google can't display an expanded step list directly in search results
  • Voice assistants can't read steps aloud sequentially
  • Step-by-step content won't be eligible for rich results
  • Users can't see the process overview before clicking
  • AI search engines can't properly understand instructional content

A proper HowTo schema should include: @type (HowTo), name, step (array of HowToStep items), and optionally totalTime, supply, tool, image.

Why does it matter?

HowTo schema is important for instructional content visibility:

  • Step-expansion rich results: Google can display an expanded step list directly in SERPs
  • Voice search: Voice assistants can read steps aloud sequentially
  • User engagement: Users can see the process overview before clicking
  • AI search readiness: AI engines use HowTo schema to understand and cite instructional content
  • Featured snippets: Step-by-step content may appear in featured snippets
  • Visual appeal: Including images for each step increases rich result eligibility

Resolving this issue improves your SEO health score by ensuring instructional content is properly structured for maximum visibility.

How to fix it

  1. Identify how-to pages: Look for pages with:

    • How-to URL patterns (/how-to/, /tutorial/, /guide/)
    • Numbered step lists
    • Titles starting with "How to", "Steps to", "Guide to"
  2. Add HowTo JSON-LD structured data to the page's <head> or before </body>:

    {
      "@context": "https://schema.org",
      "@type": "HowTo",
      "name": "How to Change a Car Tyre",
      "totalTime": "PT30M",
      "step": [
        {
          "@type": "HowToStep",
          "name": "Loosen lug nuts",
          "text": "Before lifting the car, loosen the lug nuts slightly.",
          "image": "https://example.com/step1.jpg"
        },
        {
          "@type": "HowToStep",
          "name": "Jack up the car",
          "text": "Position the jack under the vehicle frame and raise it.",
          "image": "https://example.com/step2.jpg"
        },
        {
          "@type": "HowToStep",
          "name": "Remove the flat tyre",
          "text": "Fully remove the lug nuts and take off the flat tyre.",
          "image": "https://example.com/step3.jpg"
        }
      ]
    }
    
  3. Include required properties:

    • name: How-to title
    • step: Array of HowToStep items
  4. Add recommended properties:

    • totalTime: In ISO 8601 duration format (PT30M = 30 minutes)
    • image: For each step (increases rich result eligibility)
    • supply: List of supplies needed
    • tool: List of tools needed
  5. Only use on genuine instructional content (not for marketing or sales pages)

  6. Validate with Google's Rich Results Test

Examples

Example 1: Missing HowTo Schema on Tutorial Page

Problematic state:

<!-- Tutorial page without HowTo schema -->
<html>
  <head>
    <title>How to Change a Car Tyre</title>
  </head>
  <body>
    <h1>How to Change a Car Tyre</h1>
    <h2>Step 1: Loosen lug nuts</h2>
    <p>Before lifting the car, loosen the lug nuts slightly.</p>
    <h2>Step 2: Jack up the car</h2>
    <p>Position the jack under the vehicle frame and raise it.</p>
    <h2>Step 3: Remove the flat tyre</h2>
    <p>Fully remove the lug nuts and take off the flat tyre.</p>
  </body>
</html>

Corrected state:

<!-- Tutorial page with HowTo schema -->
<html>
  <head>
    <title>How to Change a Car Tyre</title>
    <script type="application/ld+json">
      {
        "@context": "https://schema.org",
        "@type": "HowTo",
        "name": "How to Change a Car Tyre",
        "totalTime": "PT30M",
        "step": [
          {
            "@type": "HowToStep",
            "name": "Loosen lug nuts",
            "text": "Before lifting the car, loosen the lug nuts slightly.",
            "image": "https://example.com/step1.jpg"
          },
          {
            "@type": "HowToStep",
            "name": "Jack up the car",
            "text": "Position the jack under the vehicle frame and raise it.",
            "image": "https://example.com/step2.jpg"
          },
          {
            "@type": "HowToStep",
            "name": "Remove the flat tyre",
            "text": "Fully remove the lug nuts and take off the flat tyre.",
            "image": "https://example.com/step3.jpg"
          }
        ]
      }
    </script>
  </head>
  <body>
    <h1>How to Change a Car Tyre</h1>
    <h2>Step 1: Loosen lug nuts</h2>
    <p>Before lifting the car, loosen the lug nuts slightly.</p>
    <h2>Step 2: Jack up the car</h2>
    <p>Position the jack under the vehicle frame and raise it.</p>
    <h2>Step 3: Remove the flat tyre</h2>
    <p>Fully remove the lug nuts and take off the flat tyre.</p>
  </body>
</html>

Example 2: HowTo Schema with Supplies and Tools

Corrected state with supplies and tools:

{
  "@context": "https://schema.org",
  "@type": "HowTo",
  "name": "How to Bake Chocolate Chip Cookies",
  "totalTime": "PT45M",
  "supply": [
    { "@type": "HowToSupply", "name": "2 cups flour" },
    { "@type": "HowToSupply", "name": "1 cup chocolate chips" },
    { "@type": "HowToSupply", "name": "1/2 cup sugar" }
  ],
  "tool": [
    { "@type": "HowToTool", "name": "Mixing bowl" },
    { "@type": "HowToTool", "name": "Baking sheet" },
    { "@type": "HowToTool", "name": "Oven" }
  ],
  "step": [
    {
      "@type": "HowToStep",
      "name": "Preheat oven",
      "text": "Preheat oven to 350°F (175°C)."
    },
    {
      "@type": "HowToStep",
      "name": "Mix ingredients",
      "text": "Mix flour, sugar, and chocolate chips in a bowl."
    },
    {
      "@type": "HowToStep",
      "name": "Bake",
      "text": "Place on baking sheet and bake for 12-15 minutes."
    }
  ]
}

Example 3: Incomplete HowTo Schema

Problematic state:

{
  "@context": "https://schema.org",
  "@type": "HowTo",
  "name": "How to Fix a Leaky Faucet"
}

Missing required step property

Corrected state:

{
  "@context": "https://schema.org",
  "@type": "HowTo",
  "name": "How to Fix a Leaky Faucet",
  "step": [
    {
      "@type": "HowToStep",
      "name": "Turn off water supply",
      "text": "Locate and turn off the water supply valve under the sink."
    },
    {
      "@type": "HowToStep",
      "name": "Disassemble faucet",
      "text": "Remove the handle and disassemble the faucet to access the washer."
    }
  ]
}

How PixyScan detects this

PixyScan follows these logical steps to detect missing HowTo schema:

  1. Detect how-to pages: The crawler identifies pages with:

    • How-to URL patterns (/how-to/, /tutorial/, /guide/, /steps/)
    • Numbered step lists (e.g., "1.", "2.", "3." or "Step 1", "Step 2")
    • Titles starting with "How to", "Steps to", "Guide to", "Tutorial"
  2. Extract structured data: The crawler looks for JSON-LD, Microdata, or RDFa blocks on the page

  3. Check for HowTo schema: The crawler verifies if any schema block has:

    • @type set to HowTo
    • step property containing an array of HowToStep items
  4. Validate schema completeness: If HowTo schema is found, the crawler checks for:

    • step array with at least one HowToStep
    • Each HowToStep has name and/or text property
    • totalTime in ISO 8601 duration format (recommended)
  5. Trigger conditions: The issue is flagged when:

    • Page has step-by-step content but no HowTo schema
    • HowTo schema exists but step array is empty or missing

References