← Back to results

Detailed fix report

https://example.com/ / Score 56/100・Grade D

Detailed fix report (Tier 1) — $19

Each of the 6 issues includes what's wrong, why it matters, fix steps, and a code example. The first one is shown free.

Unlock the full report — $19

Tip: if a card-verification popup (3-D Secure) appears during checkout, complete it to finish. Trouble? Email support@aifriendlycheck.com.

  1. Structured data (JSON-LD) Problem +12pt

    Invisible — won't change how your site looks

    Problem

    There is no structured data (Schema.org JSON-LD).

    Why it matters

    JSON-LD tells AI exactly what the page is (article, product, store, etc.). Without it, AI has to guess and cites you less.

    How to fix

    1. Pick the Schema.org type that fits the page (Article / Product / LocalBusiness, etc.)
    2. Add it in <head> with <script type="application/ld+json">
    3. Validate it with Google's Rich Results Test
    Code example
    <script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@type": "Article",
      "headline": "Your article title",
      "description": "Short summary",
      "datePublished": "2026-01-01"
    }
    </script>