Beta Feature — Experimental Analysis

How AI Systems Might Judge Your Page Authority

Beyond access and visibility—see technical signals that influence whether AI systems trust and cite your content.

Access Isn’t Enough—Authority Matters Too

AI systems don’t cite every page they can access. They prioritize sources that appear authoritative, well-structured, and trustworthy. Authority analysis shows you the technical signals AI systems might use to evaluate your page quality—schema validity, page-type classification, structural completeness, and other markers of content credibility.

Important caveat: This is exploratory analysis. We don’t claim to know exactly how AI systems weight these signals.

The Authority Hypothesis

Premise

When AI systems have multiple sources, they likely favor sources with stronger technical authority signals.

What we check

  • Valid schema markup
  • Clear page-type classification
  • Semantic structure completeness
  • Metadata completeness
  • Accessibility signals

What we don’t check

  • Content quality
  • Domain authority
  • Backlinks
  • Brand signals
  • User engagement

Why this matters

If two pages have similar content but one has complete schema while the other has none, AI systems might prefer the technically-complete source. Technical completeness is something you can control and measure.

Overall Technical Authority Signal

A summary grade (A–F) based on grouped technical checks. Not a ranking prediction—a diagnostic of how technically complete your page appears.

What influences the grade

  • High authority signals (A/B grades): valid schema, complete required properties, clear page-type, proper heading hierarchy, complete metadata, strong ARIA coverage, HTML5 semantic structure
  • Low authority signals (D/F grades): missing or invalid schema, ambiguous page type, broken heading hierarchy, missing metadata, poor ARIA, minimal semantic structure
  • Neutral signals: schema recommended properties, extra metadata, advanced semantic elements

Grade interpretation

  • Grade A (90–100%): Technically complete. All major authority signals present and valid.
  • Grade B (80–89%): Strong technical foundation. Minor gaps in recommended properties.
  • Grade C (70–79%): Moderate completeness. Some required signals missing.
  • Grade D (60–69%): Weak technical signals. Significant gaps in schema, structure, metadata.
  • Grade F (<60%): Minimal technical authority signals. High-priority fixes needed.

What Kind of Page Is This?

We attempt to classify your page type based on schema markup, HTML structure, content patterns, and URL patterns.

Why page type matters: AI systems might prioritize certain page types for certain queries—articles for informational, products for shopping, FAQ for direct question-answer. Ambiguous classification reduces AI confidence in how to use your content.

Article / Blog Post

Useful for informational queries, tutorials, commentary, and current events.

Product Page

Important for shopping and commercial-intent prompts where specs, pricing, and offers matter.

Homepage

Best aligned with brand, entity, and company-information queries.

Service Page

Matches queries about capabilities, deliverables, and business offerings.

FAQ Page

Structured Q&A format often maps directly to prompt-answer matching.

About Page

Matches entity and biographical queries about organizations and individuals.

Contact Page

Functional page type with limited AI citation potential on its own.

Event Page

Time-bounded content; schema completeness is especially important for discoverability.

Recipe

Highly structured format with strong schema support—one of the clearest classification signals.

How-To / Tutorial

Step-structured content with instructional intent matches procedural prompts well.

Review

Evaluative content with opinions and comparisons; rating schema reinforces classification.

Video Page

Multimedia content type; VideoObject schema clarifies the primary format to AI systems.

Ambiguous / Unknown

Mixed or unclear signals. Classification is uncertain, which may reduce AI confidence in how to use the page.

Grouped Checks

Schema & Structured Data

What we check: Schema.org presence and type, JSON-LD validation, required and recommended properties, nested schemas, multiple schema types.

Why it matters: AI systems use structured data to understand page context without reading every word of body copy.

  • JSON-LD syntax errors
  • Missing required properties
  • Wrong schema type for page content
  • Incomplete nested schemas

Semantic Structure

What we check: Heading hierarchy (H1→H6), skipped levels, multiple H1s, HTML5 semantic elements, content outline, landmark roles.

Why it matters: Clean structure helps AI systems parse and segment your content correctly.

  • H1→H3 jumps (skipped H2)
  • No H1 present
  • Multiple H1 elements
  • All divs, no article or section elements

Accessibility Signals

What we check: ARIA labels, ARIA roles, alt text coverage, form label associations, keyboard navigation markers.

Why it matters: Accessibility markup provides additional machine-readable context about page elements and their purpose.

Important note: This is not a full WCAG audit—we check presence and coverage as structural signals, not compliance.

  • Buttons and forms missing labels
  • Images without alt text
  • Custom controls lacking ARIA roles

Metadata Quality

What we check: Title tag length (50–60 chars), meta description length (150–160 chars), OG tags, Twitter Card, canonical URL, hreflang.

Why it matters: Metadata gives AI systems concise summaries of your page without requiring full content processing.

  • Missing or empty title
  • Missing meta description
  • Title too long or too short
  • Missing OG image or no canonical

Not Just Scores—Specific Evidence and Fixes

Each authority check provides pass/fail/warning status, specific evidence found on the page, why the signal matters, fix recommendations, and a severity level.

Pass

Article Schema

Valid Article JSON-LD found with required properties present.

{
  "@type": "Article",
  "headline": "...",
  "author": {...},
  "datePublished": "..."
}

Why it matters: Confirms page type and surfaces key metadata without requiring AI systems to parse body text.

Recommendation: Add dateModified and image properties to strengthen completeness.

Fail

Heading Hierarchy

Heading levels skip from H1 to H3, with no H2 present.

<h1>Main Title</h1>
<h3>Subheading</h3> <!-- H2 skipped -->
<h3>Another Section</h3>

Why it matters: Broken hierarchy makes document outline ambiguous and harder for AI systems to segment content correctly.

Fix: Restructure headings to use H2 for primary sections and H3 for subsections within those sections.

Warning

Schema Validation

Product schema found but missing the offers property, which is required for commercial page classification.

{
  "@type": "Product",
  "name": "...",
  "description": "..."
  // offers missing
}

Why it matters: Incomplete Product schema may cause AI systems to treat the page as informational rather than commercial.

Fix: Add an offers object with price, priceCurrency, and availability.

How Authority Differs from Other Checks

Authority vs Crawlability

Crawlability: Can AI systems access your page at all?

Authority: Once they can access it, will they trust and cite it?

A perfectly crawlable page with no schema and broken structure still scores poorly on authority.

Authority vs Content Visibility

Content Visibility: Is the text of your content actually present in the HTML AI systems see?

Authority: How well-structured and annotated is that visible content?

Visible content without semantic markup is harder for AI systems to interpret confidently.

Authority vs Performance

Performance: Can AI systems fetch your page quickly and reliably?

Authority: Does the page present strong credibility signals after the fetch succeeds?

Fast delivery of a technically weak page still leaves authority gaps.

Authority vs Reverse Prompting

Reverse Prompting: What queries does your content match based on its subject matter?

Authority: Do the technical signals around that content support trust and citation?

Content-query fit and technical credibility are complementary, not interchangeable.

Who Should Use Authority Analysis

Content Teams Optimizing for AI Citations

Scenario: You publish high-quality content but aren’t appearing in AI-generated answers despite good SEO metrics.

  • Run authority analysis on top-performing pages
  • Identify schema gaps for your content type
  • Fix required property gaps in existing markup
  • Verify heading hierarchy across articles
  • Add missing OG and canonical metadata

Value: Technical completeness improvements you control without rewriting content.

Developers Implementing Structured Data

Scenario: You’re adding or updating JSON-LD markup and need to verify correctness and completeness, not just syntax.

  • Validate JSON-LD syntax and schema type
  • Check required properties per schema type
  • Identify nested schema gaps
  • Confirm multiple schema types render correctly
  • Compare before/after states in monitoring

Value: Specific evidence pinpointing exactly what’s missing rather than a generic validity pass/fail.

SEO Consultants

Scenario: You’re auditing client sites for AI readiness and need structured reports covering technical authority gaps.

  • Run authority checks across all key page types
  • Prioritize fixes by severity level
  • Export PDF reports with evidence per check
  • Track improvements over time with monitoring
  • Use grade changes to demonstrate progress

Value: Structured evidence base for client recommendations beyond traditional SEO metrics.

Publishers and News Sites

Scenario: You publish at volume and need consistent technical quality across many article pages at scale.

  • Audit representative article sample for authority issues
  • Identify template-level schema gaps affecting all posts
  • Check NewsArticle vs Article schema usage
  • Verify datePublished and dateModified consistency
  • Set up monitoring for ongoing quality checks

Value: Template-level fixes that improve authority signals across your entire content library at once.

What Authority Analysis Is NOT

Not This

Not a ranking tracker

Authority analysis does not monitor where your pages appear in AI-generated answers or track citation frequency over time. It evaluates technical completeness signals, not outcomes.

Not This

Not content quality scoring

We analyze structure, markup, and metadata—not whether your writing is accurate, useful, or well-researched. Content quality is beyond what automated technical checks can assess.

Not This

Not a citation guarantee

Improving your authority score does not guarantee AI systems will cite your pages. It removes technical obstacles that might reduce citation probability, but many other factors are outside your control.

Not This

Not domain authority

This is page-level technical signal analysis, not a domain-wide reputation score. We don’t analyze backlinks, domain age, brand recognition, or cross-site trust signals.

Beta

Experimental feature

Authority analysis is in active development. The checks, scoring, and grade thresholds reflect our current hypotheses about AI citation signals. We’re transparent that AI system behavior is not fully observable and these methods will evolve.

Frequently Asked Questions

Is the authority score the same as Domain Authority or Domain Rating?
No. Those are third-party backlink-based metrics. Our authority score reflects page-level technical signals—schema, structure, metadata, and accessibility—based on what we can inspect directly from the page HTML.
How is the grade calculated?
The grade is a weighted aggregate of grouped check scores. Checks with higher impact on AI readability (like valid schema and heading structure) contribute more to the final grade than lower-weight signals like advanced metadata fields.
Do I need to implement all the fixes to see improvement?
No. The checks are prioritized by severity. Fixing high-severity gaps—like adding missing required schema properties or correcting a broken heading hierarchy—will move your grade more than fixing lower-severity warnings.
Does a passing authority grade mean AI systems will cite my page?
Not necessarily. A strong authority score means your page has the technical signals that support trust and citation. But AI systems also weigh content relevance, recency, and many signals we cannot observe. Authority analysis removes technical obstacles; it does not guarantee outcomes.
How does authority analysis interact with the other tabs?
Authority is one of four diagnostic dimensions alongside Crawlability, Content Visibility, and Performance. A page can pass authority checks while failing crawlability—in which case, authority improvements have no effect until access is fixed. The overall report shows all dimensions together.
What schema types are supported?
We check for common page-level types including Article, NewsArticle, BlogPosting, Product, Service, FAQPage, HowTo, Recipe, VideoObject, Event, Organization, and WebPage. We validate required and recommended properties per Schema.org specifications.
Does the accessibility check replace a proper WCAG audit?
No. We check presence and coverage of ARIA labels, roles, and alt text as structural signals relevant to machine readability. We do not run a compliance audit. For WCAG compliance, use a dedicated accessibility testing tool.
Can I track authority score changes over time?
Yes, through the monitoring feature. When monitoring is active for a URL, authority checks run alongside other diagnostic checks. You can view historical scores and compare before/after states when schema or structure changes are deployed.
Why is this labeled as a beta feature?
AI citation behavior is not fully documented by any AI system provider. Our authority checks reflect our current best understanding of which technical signals matter. We’re transparent about this uncertainty and continue to refine the checks as more evidence becomes available.

See Your Page Authority Analysis

Start with free diagnostics to check access, visibility, and performance. Unlock authority analysis in the beta platform for a deeper view of technical credibility signals.