Methodology
Cited checks the first 3 sampled pages for four core Open Graph properties:og:title— the page’s title for OG consumers (often shorter and punchier than the HTML<title>)og:description— the page’s description for OG consumers (often more compelling than the standard meta description)og:image— the URL of a representative image for the page (used by AI summarizers and social platforms)og:type— the content category (article,product,website,book, etc.) — this is the property AI models use to classify the page’s purpose
- 80% or more present (10-12 of 12) → 6/6. Full score.
- 50-79% present (6-9 of 12) → 3/6. Partial — meaningful adoption but gaps.
- Any tags present → 1/6. OG is on the radar but most pages aren’t covered.
- No OG tags found → 0/6. AI has no structured summary signal.
og:image” or “the type tag is on the homepage but missing everywhere else.” This drives the fix recommendation in the Opportunity card.
Verification
You can verify our finding yourself in a browser. Step 1: Open the pages we sampled. Cited reports the URLs we tested. Open each in a new tab. Step 2: Check the OG tags in source. Right-click the page, View Page Source (Cmd+U / Ctrl+U), and search (Cmd+F / Ctrl+F) for property="og:. Every match is one OG tag. The four to look for: og:title, og:description, og:image, og:type. Each should have a non-empty content attribute.
Step 3: Inspect via the OG debugger. Paste the page URL into Meta’s Sharing Debugger (which still works for any OG tags, despite the Meta branding — it’s the canonical OG tester). It returns a structured view of every OG tag, plus any errors or warnings. The same data AI models consume from your page is visible here.
Step 4: Spot-check the image. If og:image is present, the image URL should be a working absolute URL (starts with https://, returns a 200) and the image should be at least 600×315 pixels per Open Graph spec recommendations. The scanner doesn’t check the image itself — just the tag presence — so a broken og:image URL passes this signal but fails downstream consumers.
If your verification disagrees with Cited’s finding, that’s a bug — let us know.
Technical detail
The Open Graph protocol was introduced by Facebook in 2010 and remains the dominant convention for declaring how web content should be represented in external summaries. AI models, search engines, social platforms, and link preview generators all read the same OG meta tags. The four tags Cited checks are the original “basic metadata” set — the minimum subset that downstream consumers expect. Extraction logic. Cited’s scanner uses regex against the raw HTML for each of the four properties:- Primary pattern:
<meta property="og:…" content="…">withpropertybeforecontent - Reversed pattern:
<meta content="…" property="og:…">withcontentbeforeproperty - Both patterns are case-insensitive and tolerate arbitrary additional attributes
- Non-empty content (matching
[^"']+) is required — empty content attributes (content="") don’t count
frequentlyMissing set). This identifies patterns like “your template doesn’t include og:image” — actionable in a single template fix.
Edge cases the scanner handles:
- OG tags inside conditional blocks — some CMSes wrap OG tags in
{% if og_image %}…{% endif %}template logic. The scanner reads the rendered HTML after server-side or JavaScript rendering, so conditional tags appear (or don’t) based on the actual conditional outcome. - Duplicate OG tags — pages with two
og:titletags (often a CMS plugin issue) still register asog:title presentbecause the scanner only checks existence, not uniqueness. - OG-equivalent tags from other vendors — Twitter’s
twitter:title, Schema.orgnameproperties, and Pinterest’spinterest:titledon’t satisfy this signal. Only the OG namespace counts. - Empty content attributes —
<meta property="og:image" content="">matches the tag-existence regex but the content extraction returns empty. The scanner treats these as not present. - Property attribute variations —
name="og:title"(usingnameinstead ofproperty) is technically invalid OG but used by some CMSes. The scanner only matchesproperty=—name=-form OG tags don’t satisfy this signal.
- Image URL validity. The scanner detects
og:imagepresence but doesn’t fetch the URL or verify the image dimensions. A brokenog:imageURL still passes this check. - Tag content quality. A page with
og:title="Untitled"scores the same asog:title="Best Coffee Beans for French Press 2026". The scanner counts presence, not editorial value. - Extended OG properties. Tags like
og:url,og:site_name,og:locale,article:published_time, andproduct:price:amountaren’t checked. These are useful for richer AI consumption but aren’t required for the core summary path. - Twitter Cards.
twitter:card,twitter:title,twitter:description,twitter:imageare a parallel system that some AI models also consume. They’re not scored here; sites with both OG and Twitter Cards get more consistent representation than OG-only sites, but the signal evaluates OG alone.
<head>.
See also: Meta Description Quality.