Author Attribution is the signal AI engines use to decide whether a page came from a named expert or from an anonymous content shop, and across the June 2026 Cited Index, 27 of 70 mid-tier Indian brands fail it. MuscleBlaze in Health & Wellness, Pipedrive in CRM & Sales, Mokobara in Travel & Luggage. The signal lives in two places (a JSON-LD author block in the page head and a visible byline in the article template) and most mid-tier sites carry neither. The fix is an hour of template work. The reward is that ChatGPT, Perplexity, Gemini, and AI Mode start treating your articles as authored content instead of organisation-attributed content, which is the difference between being quoted and being mentioned.
That is the headline finding from B7 of the June 2026 Cited Index. 226 Indian brands, 10 categories, GEO Score sampled on the top 10 brands per category. Across every category we scanned, the same signal sat at the top of the mid-tier weakness list. Not Sitemap Accessibility (15 brands). Not Heading Hierarchy (6 brands). Not AI-Optimised Content Signals (6 brands). Author Attribution: 27 brands, almost 4x the next-most-common weakness.
What Author Attribution actually is
AI models inherited the E-E-A-T evaluation path (Experience, Expertise, Authoritativeness, Trustworthiness) from Google's Search Quality Rater Guidelines, because the training data already encoded authorship signals as quality markers. A page that declares a named human author with a bio carries more weight in a retrieval pipeline than a page attributed to "Editorial Team" or to nothing at all.
Cited's GEO Score checks three forms in priority order:
- A JSON-LD
<script type="application/ld+json">block with anauthorfield (string or{"@type": "Person", "name": "..."}) - A
<meta name="author" content="...">tag in the page head - A visible DOM element with
itemprop="author",rel="author", or any class containing "author"
The first two are schema-backed (5/5). The third is visible-only (3/5). Neither is present means 0/5. One passing page lifts the whole site because authorship templates propagate: if your article CMS renders the byline once, every article inherits it.
The 27/70 breakdown
| Category | Mid-tier brands failing Author Attribution | Source mix dominant signal |
|---|---|---|
| Travel & Luggage | 6 of 7 | brand_site |
| Pet Care | 4 of 7 | brand_site |
| Skincare & Beauty | 3 of 7 | brand_site |
| Health & Wellness | 3 of 7 | brand_site |
| HR & Payroll | 3 of 7 | brand_site |
| Conversational AI | 3 of 6 | brand_site |
| Baby Care | 2 of 7 | marketplace |
| Personal Grooming | 1 of 7 (top weakness shifts to AI-Optimised Content) | marketplace |
| CRM & Sales | 1 of 7 (top weakness shifts to Sitemap) | brand_site |
| Audio & Wearables | 1 of 7 (top weakness shifts to Answer-Block Formatting) | marketplace |
Travel & Luggage is the cleanest example. Six of the seven mid-tier brands ranked 4 through 10 in the category fail this single signal. Samsonite, American Tourister, and Safari (the top 3 in the category) all pass it. That is the mid-tier signature: high-content brands with active blogs and editorial templates that forgot to render the byline in a way AI parsers can pick up.
In the brand-site-dominated categories (Travel, Skincare, Health & Wellness, HR & Payroll, Pet Care, CRM, ConvAI) this matters most. Those are the categories where the AI engine pulls a citation directly from the brand's own pages instead of from a marketplace listing or a Reddit thread. If your brand site is the cited surface and your brand site has no author signal, the engine attributes the answer to the organisation. Your competitor's named author gets the byline-style credit. You get a footnote.
Why this is the cheapest rank-mover on the board
Want to know how your brand scores on these same metrics?
We'll run 20 prompts across 3 AI platforms and send your report within 24 hours.
Author Attribution sits at Layer 2 (Citability) in the 3-Layer AI Visibility Stack. Layer 1 (Discoverability) is whether AI can find and parse your content. Layer 2 is whether it actually uses you when it finds you. Layer 3 (Authority) is how well it positions you when it does.
Most "GEO audits" focus on Layer 1: robots.txt, llms.txt, schema validators, crawler accessibility. Those are mechanical fixes and they matter. But once a brand is past Layer 1 (which mid-tier Indian D2C brands mostly are), the next-biggest rank-mover is Layer 2, and inside Layer 2 the lowest-effort fix is Author Attribution. It maps to Cited 8 Metric 7 (Schema & Technical Health) as the parent metric.
The B7 data also shows the second important pattern: mean GEO Score for ranks 1-3 in each category is not meaningfully higher than mean GEO Score for ranks 4-10 (the delta is usually under 5 points). Top-tier brands are leading on citation count, not on technical readiness. Which means mid-tier brands cannot expect rank gains from technical work alone. But Author Attribution is one of the few technical signals where the mid-tier IS measurably worse than the top-tier in our dataset, and where the fix takes an afternoon.
The fix (an hour of template work)
For a brand scoring 0/5 or 3/5 on Author Attribution today, the move is:
Step 1: Add JSON-LD author to your article template. In the <head> of every blog post / article / guide page, render this block:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "Your article title",
"datePublished": "2026-07-01",
"author": {
"@type": "Person",
"name": "Author full name",
"url": "https://yourbrand.com/authors/author-slug"
},
"publisher": {
"@type": "Organization",
"name": "Your brand"
}
}
</script>
The url field on the author is the load-bearing part. AI parsers follow it to assess expertise. A plain string "author": "Jane Doe" lifts you from visible-only to schema-backed, but a Person object linked to a bio page is what unlocks the full credit.
Step 2: Build the bio page. /authors/jane-doe at minimum carries: full name, role at the brand, headshot, 100 to 300 words of biography, links to LinkedIn / X / other published work, and a list of articles written for the brand. This is the page AI engines (and human readers) land on when they want to evaluate whether the byline is real.
Step 3: Render the visible byline. Below the article title, render the author's name as a link to the bio page. Wrap it in an element with rel="author" or a class containing "author". This makes the visible-only signal redundant for parsers but it also matters for human credibility and for engines that do DOM-based extraction as a fallback.
Step 4: Verify in the browser. Open one of your published articles, then in DevTools console run:
[...document.querySelectorAll('script[type="application/ld+json"]')]
.flatMap(s => { try { const d = JSON.parse(s.textContent); return Array.isArray(d) ? d : [d]; } catch { return []; } })
.map(d => d.author)
.filter(Boolean)
If the output shows your author object, you have schema-backed attribution. The site-level GEO Score recalculates the next time the scanner runs.
Most modern CMSes emit this automatically once an author is assigned to the post. WordPress with Yoast, Webflow with the built-in author field, Ghost. The brands failing this signal are usually on custom-built brand sites where the engineering team built the article template before AI citation existed as a problem worth designing for.
What this looks like across 5 engines
Author Attribution is not a Google-specific signal. Google's AI optimization guide (May 2026) says structured data is not required for AI Overviews specifically, and that is accurate for Google. But Google is one of five engines that decide brand visibility in AI answers, and the other four behave differently.
ChatGPT's retrieval pipeline (grounding via web search since Oct 2024) leans hard on extractable byline metadata when constructing E-E-A-T scores for retrieved pages. Perplexity surfaces author attribution in its citation panel when the data is there, which makes it more likely to anchor to schema-backed sources. Gemini's grounding pipeline and Google AI Mode both inherit from Google Search ranking signals where E-E-A-T is a documented factor for YMYL (Your Money or Your Life) content, which Health & Wellness, HR & Payroll, and CRM categories all sit inside. AI Mode itself has been live globally since I/O 2026 and indexes brand-site content directly.
The 5-platform reality is that you do not get to choose which signal each engine weights. You instrument all of them and let the engines pick. Author Attribution is one of the few signals every engine can use, because the schema is standardised.
What the data does not say
Two honest caveats before the playbook.
First, GEO Score for low-tier brands (ranks 11+) is not measured. The June 2026 scan sampled top-10 per category. Author Attribution may be more widespread in the long tail, but we cannot say from this dataset. Brand-specific recommendations for low-tier brands wait for the next scan batch with a stratified sample (planned for M9+).
Second, Author Attribution as a citation lever is not a guarantee. AI engines weight named authors more heavily, but content quality, source mix, and category-level dynamics matter more in absolute terms. What we can say from the B7 data is that Author Attribution is the consistent technical delta between mid-tier and top-tier across 10 categories. Fix it and you remove one obvious reason engines have to under-weight your pages.
The playbook for mid-tier brands
If your brand sits in ranks 4 through 10 of any June 2026 Cited Index category:
- Run a GEO Score scan on your domain and read the Author Attribution signal score.
- If 0/5 or 3/5, add JSON-LD
authorto your article template this week. The pull request is small. - Build author bio pages for your two or three most prolific contributors.
- Re-scan and verify the signal moved to 5/5.
- Track per-engine citation rate on your monthly Cited Index entry for the next two editions. If the engines start surfacing your articles more often, the signal worked.
The brands that already do this in our dataset (Samsonite, American Tourister, Wellbeing Nutrition, Minimalist, Re'equil, The Derma Co, greytHR, Zoho Payroll, Keka, Mother Sparsh, Mamaearth, Royal Canin, Yellow.ai, Haptik, Gupshup) are the top-3 in their categories. The correlation is not causation, but the technical hygiene matches.
Author Attribution is the cheapest rank-mover on the board for mid-tier Indian D2C brands in 2026. Most GEO audits do not scan for it. The mid-tier brands that fix it this quarter will close one of the few technical gaps that consistently separates them from the leaders.