Philosophy: Think Like the Knowledge Graph
Google's Knowledge Graph does not passively wait for data. Per the Self-Updating Knowledge Graph patent (2018), it actively audits itself: comparing entity completeness against type norms, generating questions about gaps, searching for answers across tiered sources, and updating when confidence is high.
Your job is to reverse-engineer this process — identify gaps before Google does, then supply the answers in formats and locations the KG trusts.
Core principles:
-
Completeness over presence — A Knowledge Panel exists is not the goal. A complete Knowledge Panel with every standard attribute populated is the goal.
-
Source hierarchy dictates strategy — Fixing a gap at Tier 4 is worthless if the gap exists at Tier 1. Work top-down through the source hierarchy.
-
Reconciliation before attributes — If Google cannot confirm all references point to the same entity, adding attributes is wasted effort. Fix sameAs and identity consistency first.
Source Trust Hierarchy
| Tier | Source Examples | Trust Level | |------|---------------|-------------| | 1 | Wikidata, Wikipedia, Google's own services (GMB, YouTube) | Highest | | 2 | Government registries, professional licensing databases, SEC EDGAR | Very High | | 3 | Industry associations, BBB, established news publications | High | | 4 | Business directories, review sites, industry blogs | Medium |
Entity Type Completeness Standards
Each entity type has a set of standard attributes Google expects. Compare the entity's current KG data against the standard:
Organization standard attributes:
- name, alternateName
- url (official website)
- logo
- description (under 150 chars)
- foundingDate
- numberOfEmployees
- address
- telephone
- sameAs (5+ platforms)
- knowsAbout (expertise areas)
- award (if applicable)
- memberOf (industry associations)
Person standard attributes:
- name, alternateName (pen names, maiden name)
- birthDate
- nationality
- alumniOf (education)
- hasCredential (licenses, certifications)
- jobTitle
- worksFor
- sameAs (5+ platforms)
- knowsAbout
Gap Identification Workflow
- Search the entity on Google — identify what the Knowledge Panel currently shows
- Check Wikidata entry for the entity — compare KG display to Wikidata data
- List attributes present vs. attributes standard for this entity type
- For each missing attribute, identify the lowest-tier source that could populate it
- Prioritize filling gaps at Tier 1-2 sources first
Gap-Filling Actions by Source Tier
Tier 1 gaps (Wikidata missing attributes):
- Edit the Wikidata entry directly (follow neutral point of view — do not add promotional claims)
- Add cited references from authoritative sources for every new statement
- Add
instance of(P31),official website(P856),image(P18),founding date(P571) - Do NOT edit Wikipedia articles about your own entity — COI violation
Tier 2 gaps (government/licensing databases):
- Ensure business is registered in state business registry
- Ensure professional licenses are current and publicly searchable
- Update registration address to match NAP
Tier 3 gaps (association memberships):
- Join and maintain active membership in 2-3 industry associations
- Ensure member profile is complete with website URL
- Request editorial coverage in association publications
Schema gap-filling:
- Add every missing standard attribute via JSON-LD Organization/Person schema
- sameAs must include the Wikidata URL as first entry
- Deploy knowsAbout with 5+ specific topic areas
Monitoring
Verify gap-filling success at 30-day intervals:
- Re-check Google Knowledge Panel for the entity
- Query ChatGPT and Perplexity: "What is [entity name]?" — check completeness of AI responses
- Check Wikidata for any conflicting edits
Cross-References
entity-seo— full entity SEO pipeline including Knowledge Panel acquisitionschema-template-library— Organization and Person schema templateswikidata-entity-lookup— Wikidata lookup and entry managementmetehan-entity-extractor-integration— entity extraction for gap identification
#seo-sop #seo #entity-seo #knowledge-graph #wikidata #structured-data