Skip to content

Audit 17: Knowledge Graph Gap Filler

Surgically identify what Google's Knowledge Graph does NOT know about an entity, then generate the exact structured data, content, and cross-platform actions needed to fill those gaps.

Title & Description

What it is: A systematic audit that reverse-engineers Google's self-updating Knowledge Graph process to identify missing entity attributes and prescribe targeted fixes.

When to run it: When a Knowledge Panel is incomplete, missing attributes, or not showing at all. Also run proactively for any entity that should have a Knowledge Panel.

Patent Foundation: Google's Self-Updating Knowledge Graph patent (2018) — Google actively audits its own Knowledge Graph, comparing entity completeness against type norms, generating questions about gaps, searching for answers across tiered sources, and updating when confidence is high.


Patent & Research Foundation

Core Patent: Self-Updating Knowledge Graph (2018)

Google's Knowledge Graph does not passively wait for data. It actively:

  1. Audits entity completeness against type norms
  2. Generates questions about attribute gaps
  3. Searches for answers across tiered source hierarchy
  4. Updates the KG when confidence threshold is met

Source Trust Hierarchy

TierSourcesTrust Level
Tier 1Official website (schema.org markup)Highest
Tier 2Wikipedia, WikidataVery High
Tier 3Crunchbase, LinkedIn, BBB, industry databasesHigh
Tier 4News articles, blog mentionsMedium
Tier 5Social profiles, directoriesLower

Strategic Implication: Fixing a gap at Tier 4 is nearly worthless if the gap exists at Tier 1. Always work top-down through the trust hierarchy.


The 4 Principles of KG Gap Analysis

1. Completeness Over Presence

Having a Knowledge Panel is not the goal. Having a COMPLETE Knowledge Panel with every standard attribute populated is the goal.

2. Source Hierarchy Dictates Strategy

Fix the highest-tier gap first. Official website schema → Wikipedia → Wikidata → industry databases.

3. Reconciliation Before Attributes

If Google cannot confirm all references point to the same entity, adding attributes is wasted effort. Fix identity consistency first.

4. Machine Questions, Human Answers

The KG generates questions to fill its gaps. Anticipate those questions and answer them in structured, extractable formats.


Audit Methodology

Phase 1: Entity Identification

Determine what entity type Google currently recognizes:

[ ] Person (name, job title, employer, notable work)
[ ] Organization (name, industry, headquarters, founders)
[ ] LocalBusiness (name, address, phone, hours, category)
[ ] Place (name, location, geo coordinates)
[ ] CreativeWork (title, author, publisher, genre)
[ ] Product (name, brand, SKU, offers)

Check if entity is reconciled:

  • Search entity name in Google — does a Knowledge Panel appear?
  • If Knowledge Panel shows: entity is recognized
  • If no Knowledge Panel: entity may not be reconciled yet

Phase 2: Attribute Gap Analysis

Standard attributes for the entity type:

For Organization:

  • Name, website, headquarters, founded, founders, employees
  • Products/services, industry, description
  • Social profiles (LinkedIn, Twitter, Facebook)
  • Wikipedia page, Wikidata QID

For Person:

  • Full name, date of birth (if public), nationality
  • Occupation, employer, notable works
  • Education, awards, social profiles
  • Wikipedia page (if notable enough)

For LocalBusiness:

  • Name, address, phone, website
  • Hours, category, price range
  • Coordinates, GMB listing
  • Reviews, images

Gap identification:

[ ] List every standard attribute for entity type
[ ] Check which attributes appear in Knowledge Panel
[ ] Missing attributes = gaps to fill
[ ] Partial attributes (low confidence) = strengthen sources

Phase 3: Source Audit

For each missing attribute, identify:

  1. Does the official website have schema markup with this attribute?
  2. Does Wikipedia mention this attribute?
  3. Does Wikidata have this property populated?
  4. Do third-party databases (Crunchbase, LinkedIn) have this?

Priority fix order:

Gap at Tier 1 (website): Add JSON-LD schema
Gap at Tier 2 (Wikipedia): Edit Wikipedia article
Gap at Tier 3 (Wikidata): Add Wikidata property
Gap at Tier 4 (databases): Update Crunchbase/LinkedIn
Gap at Tier 5 (directories): Update citation listings

How to Run This Audit

Step 1: Knowledge Panel Audit

Open Google, search for the entity name.

If Knowledge Panel shows:
- Screenshot it
- List every visible attribute
- Note missing attributes vs. standard for this entity type

If no Knowledge Panel:
- Entity is not reconciled (or not notable enough)
- Focus on reconciliation first (Tier 1 + Tier 2 coverage)

Step 2: Schema Audit (Tier 1)

Check the official website for entity schema:

bash
# Check for existing schema
# Look in page source for: application/ld+json
# Or use Google's Rich Results Test

If Organization schema is missing or incomplete:

json
{
  "@context": "https://schema.org",
  "@type": "Organization",
  "@id": "https://yourdomain.com/#organization",
  "name": "Full Legal Entity Name",
  "url": "https://yourdomain.com",
  "logo": "https://yourdomain.com/logo.png",
  "description": "Clear entity description",
  "foundingDate": "YYYY",
  "numberOfEmployees": {"@type": "QuantitativeValue", "value": "N"},
  "address": {
    "@type": "PostalAddress",
    "addressLocality": "City",
    "addressRegion": "State",
    "addressCountry": "US"
  },
  "sameAs": [
    "https://en.wikipedia.org/wiki/EntityName",
    "https://www.wikidata.org/wiki/QXXXXXX",
    "https://www.linkedin.com/company/name"
  ]
}

Step 3: Wikipedia & Wikidata (Tier 2)

Wikipedia:

  • Does a Wikipedia article exist for this entity?
  • If yes: Does it include all standard attributes?
  • If no: Is the entity notable enough for a Wikipedia article?

Wikidata:

  • Does a Wikidata item (Q-number) exist?
  • If yes: Are all standard properties populated?
  • Add missing properties directly in Wikidata

Wikidata Key Properties by Entity Type:

PropertyIDDescription
instance ofP31What type of entity is this?
official websiteP856Website URL
foundedP571Date entity was founded
headquartersP159Physical location
CEO / leaderP169Named executive
number of employeesP1128Company size
LinkedInP4264LinkedIn profile ID

Step 4: Cross-Platform Consistency Check

Identity consistency (reconciliation):

[ ] Entity name identical across: website, Wikipedia, Wikidata, LinkedIn, GMB
[ ] sameAs links connect all profiles to each other
[ ] @id on website schema creates a canonical entity URL
[ ] No conflicting information across platforms

Scoring

ScoreInterpretation
90-100Complete entity — Knowledge Panel should be fully populated
70-89Minor gaps — Knowledge Panel present but incomplete
50-69Significant gaps — Knowledge Panel likely missing key attributes
Below 50Major work needed — Entity may not have Knowledge Panel

Grounded in Bill Slawski's SEO by the Sea patent research