On a prompt detail page, you might see a green Cited badge alongside an amber Brand cited, no URL chip. That means the engine recognised your brand by name in its answer (counted as a citation) but didn’t include a link to your domain. The agent flags this explicitly because it’s a fixable problem with measurable upside.
Why it matters
When ChatGPT writes “The Manchester Daily covers local restaurant news” with no link to themanchesterdaily.co.uk, two things happen:
- Lost click-through. A user reading the answer has to search separately to find your site.
- Weaker ranking signal. AI engines reward consistent brand-to-domain associations. A mention without a link is a softer signal than a mention plus the URL.
What causes it
Engines need a structured signal that “Your brand name” ↔ yourdomain.com. Without it, they may recognise the brand from training but be uncertain which URL to attach. Common causes:
- Missing Organization JSON-LD schema on your homepage — the canonical machine-readable claim that “this brand name lives at this URL.”
- Inconsistent brand naming across your site (homepage uses one name, About page uses another). Engines see the variation and can’t pick a canonical link.
- The domain itself is hard to associate (your URL bears no relation to your brand name, e.g.
tmd.iofor “The Manchester Daily”). Schema is even more critical here.
How to fix it
The big one: add an Organization JSON-LD block to your homepage’s <head>. Minimal version:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Your Brand Name",
"url": "https://yourdomain.com",
"sameAs": [
"https://twitter.com/yourbrand",
"https://linkedin.com/company/yourbrand"
]
}
</script>Once installed, validate with Google’s Rich Results Test. The Schema tab on each diagnostic run will pick up the presence/absence of Organization schema on your homepage and flag it if missing.
Measuring the fix
Schema changes take a few days to a couple of weeks to propagate across LLM retrieval indexes. After installing, re-run a diagnostic in 7–14 days; the “Brand cited, no URL” chip should disappear and your domain should start appearing in the Citations Detected list. Use the Impact tab to score the schema install against citation movement.