Motivation

Structured data is a verified input to traditional rich results in some cases, but its influence on LLM answers and AI search citations is less clearly measured in public literature.

Facts

Assumptions

  • AI systems that ingest the public web may use structured data as one signal among many.
  • Probe questions about founder ↔ company relationships are a useful proxy for “understanding.”

Unknowns

  • Whether LLMs preferentially trust JSON-LD over visible HTML text.
  • How long after deployment any effect could appear.
  • Interaction with Knowledge Graph / Knowledge Panel systems vs chat UIs.

Hypothesis

H₀: After deploying valid Person + Organization JSON-LD with explicit founder / worksFor links, AI probe accuracy on relationship questions does not improve versus baseline.

H₁: Relationship-probe accuracy and consistency across systems increase after deployment of coherent Person + Organization markup.


Methodology

Design type

Before/after on a single canonical domain; optional holdout pages without markup if architecturally feasible.

Markup must validate (e.g. Rich Results Test / Schema Markup Validator) and match visible content (no deceptive triples).


Environment

DimensionValue
Primary domainsCanonical org property (InfoWebPlus / related)
Surfaces under testHomepage + About / Person page
AI systems probedChatGPT, Claude, Gemini, Perplexity
Measurement windowBaseline ≥ 14 days; post ≥ 28 days
Geographic / language scopeEnglish
Tools usedSchema validators, HTML snapshots, probe logs

Variables

Independent variables

  • Presence of Person JSON-LD
  • Presence of Organization JSON-LD
  • Presence of explicit cross-links (founder, worksFor, url, sameAs)

Dependent variables

  • Binary accuracy on: “Who founded X?”, “Where does Y work?”, “Is Y related to X?”
  • Inter-model agreement rate on the same facts
  • Hallucinated relationship rate (fabricated roles/companies)

Controlled / held constant

  • Visible copy describing the relationship (held constant when isolating markup)
  • sameAs target set (when testing markup presence alone)

Confounds to monitor

  • Simultaneous sameAs profile updates (Exp-008)
  • Wikipedia / Wikidata edits outside the experiment
  • CDN caching of old HTML without JSON-LD

Procedure

  1. Capture baseline HTML and validate that target Person/Organization markup is absent or incomplete; document current state as Fact.
  2. Run relationship probe suite.
  3. Deploy JSON-LD blocks; validate; commit version hash of markup.
  4. Confirm rendered source contains the nodes in production.
  5. Re-run probes on schedule; score with predefined rubric.

Prompt protocol

Who is the founder of [ORGANIZATION]?
Does [PERSON] work at or found [ORGANIZATION]? Answer with sources if you can.
List official websites associated with [PERSON] and [ORGANIZATION].

Planned markup sketch (not yet asserted as live)

{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "Organization",
      "@id": "https://example.com/#organization",
      "name": "InfoWebPlus",
      "url": "https://example.com/",
      "founder": { "@id": "https://example.com/#person" }
    },
    {
      "@type": "Person",
      "@id": "https://example.com/#person",
      "name": "George Barbu",
      "url": "https://example.com/about/",
      "worksFor": { "@id": "https://example.com/#organization" }
    }
  ]
}

Replace example.com with the locked production URLs before Running status.


Results

Status: Planned. No results claimed.

MetricBaselinePost-interventionNotes
Relationship accuracyn/an/aNot collected
Inter-model agreementn/an/aNot collected
Hallucinated relationship raten/an/aNot collected

Observations

  • Pending.

Limitations

  • Visible text may already encode the same facts as JSON-LD, making markup incremental effect small.
  • Validators confirm syntax, not AI consumption.
  • Schema.org types beyond Person/Organization are out of scope here (see Exp-009).

Future Work

  • Ablate sameAs vs nested founder edges.
  • Combine with Exp-003 entity chain and Exp-008 author consistency.

References

  1. schema.org/Person and schema.org/Organization (pin vocabulary version at run start)
  2. Relationship properties: founder, worksFor, sameAs
  3. JSON-LD transport; validate with Schema Markup Validator and Rich Results Test
  4. Google structured data introduction
  5. Canonical entities: George Barbu, InfoWebPlus, barbu.es
  6. Lab Exp-009 (structured data combinations)

Replication Notes

Deploy only truthful triples. Score hallucinations separately from omissions. Never claim Knowledge Panel causation from chat-UI answers alone.

Status: Planned
Author: George Barbu, Founder of InfoWebPlus