Juan Sequeda's grounded recap of the 20th Annual CDOIQ Symposium — foundational governance work, the tech-company divide, the changing CDO role, agentic AI in production, and semantics as first-class infrastructure
"These are not prerequisites you check off before the real work begins. They are the real work."
You cannot shortcut the foundation. Governance, data quality, ownership models, and semantics are not prerequisites to the real work — they are the real work.
Bill Snider presented the Trusted Data Score, a five-category rating (ownership, curation, quality, protection, observability) applied to ~100 priority lake houses out of 12,500 schemas.
Caroline Serio and team rebuilt catalog adoption over four years through gamification, community building, and a shift to data product ownership.
Kris Mork, CDO of Leidos, presented a diamond model (Attention, Direction, Energy, Congruence) via a horse-herd leadership metaphor.
Narayanan Nair, CDO, identified 15-20 critical data elements across 15-20 systems most likely to feed AI, and consolidated unstructured documents before applying AI.
ADP and Capital One built genuinely impressive data platforms over a decade because technology is native to their organizational DNA. The honest no-bs question: if they can do this, can everyone else?
Amin Venjara, CDO of ADP, compared enterprise data to the Muruntau gold mine: gold discovered in 1958 wasn't realized until the mining infrastructure was built.
Amy Lenander (CDO) and Christina Egea (SVP Product Management) presented Capital One's model. Capital One formalized the ontologist job title in 2022.
"Institutional delusion, thinking you are what you're not."
— discussed at the #HonestNoBS Dinner
The role has moved from defensive, compliance-oriented work to offensive value creation and business transformation.
Bhagyesh Phanse (CDAO, Humana), Caroline Buckley (CDAIO, Ford), and Chandhu Nair (SVP Stores, Data, AI & Innovation, Lowe's) discussed the shifting CDO role, moderated by Randy Bean.
"Expectations are up, patience is dramatically down, and the gap between what leaders are asked to deliver and the timeline it actually takes is the real driver."
— Bhagyesh Phanse, Humana
"Data storytelling has evolved to value realization storytelling — telling the story of what changed in the business because of the data."
— Chandhu Nair, Lowe's
Caroline Buckley framed high CDO turnover as a positive signal of demand; Chandhu Nair saw it as a natural technology-adoption cycle of centralization, democratization, and recentralization.
Agentic AI is non-deterministic: the next action depends on prior output and can always change. Practitioners argue for keeping the agentic surface area as small as possible.
Radha Kuchibhotla (Lead Director, AI Solutions Design, CVS Health) and Art Morales (VP, Technology Enabled Science, CSL Limited) discussed what counts as an "agent" and the production risk of non-determinism.
"The goal in production should be to minimize the non-determinism of agentic AI and convert as many steps as possible to deterministic processes."
— Art Morales, at CDOIQ 2026
Nachiket Mehta (VP of AI and Data Engineering, The Hartford), Andy Ghosal (VP Product Management, JPMorgan Chase), and Narayanan Nair (CDO, Farm Credit Services of America) discussed AI and data engineering in financial services.
~12,000 credit narratives annually, automated with five to six specialized agents pulling from a consolidated enterprise data warehouse.
The shadow agent problem is real: employees build their own agents, then leave, with no documentation of what those agents do.
Semantics and ontologies came up in more sessions, in more ways, than anything else at CDOIQ 2026. Chandhu Nair noted that ontology PhDs are now in high demand after years of being overlooked — a moment Sequeda credits Kimberley Herrington with capturing on camera.
Sequeda's own talk, delivered in one-minute lessons: ontologies and knowledge graphs deliver a 3x improvement in LLM query accuracy; governance is what moves AI POCs into production; knowledge is a first-class citizen, not a byproduct of data.
"The leap from solid foundations to actual business transformation hasn't happened yet for most of these organizations, and nobody quite knows how to close it."
— Juan Sequeda
Semantics is the differentiator, and the organizational challenge is harder than the technical one. The CDOs who understand this haven't been chasing hype — they've been busy building real foundations.
Fourteen questions about the CDOIQ 2026 conference takeaways
Thirteen key terms from the CDOIQ 2026 takeaways
Explore the entity relationships in the CDOIQ 2026 takeaways. Click nodes to open entity descriptions via URIBurner.
Execute live queries against the companion Turtle knowledge graph hosted on URIBurner (Virtuoso-backed).
PREFIX schema: <http://schema.org/>
SELECT ?person ?name ?jobTitle ?org
FROM <https://linkeddata.uriburner.com/DAV/demos/daas/cdoiq-2026-honest-takeaways-claude_code-1.ttl>
WHERE {
?person a schema:Person ;
schema:name ?name .
OPTIONAL { ?person schema:jobTitle ?jobTitle }
OPTIONAL { ?person schema:worksFor ?org }
}
ORDER BY ?name
PREFIX schema: <http://schema.org/>
SELECT ?question ?answer
FROM <https://linkeddata.uriburner.com/DAV/demos/daas/cdoiq-2026-honest-takeaways-claude_code-1.ttl>
WHERE {
?q a schema:Question ;
schema:name ?question ;
schema:acceptedAnswer/schema:text ?answer .
}
ORDER BY ?question
PREFIX schema: <http://schema.org/>
SELECT ?org ?name ?description
FROM <https://linkeddata.uriburner.com/DAV/demos/daas/cdoiq-2026-honest-takeaways-claude_code-1.ttl>
WHERE {
?org a schema:Organization ;
schema:name ?name ;
schema:description ?description .
}
ORDER BY ?name
PREFIX schema: <http://schema.org/>
PREFIX : <https://juansequeda.substack.com/p/cdoiq-2026-my-honest-no-bs-takeaways#>
SELECT ?case ?name ?org ?outcome
FROM <https://linkeddata.uriburner.com/DAV/demos/daas/cdoiq-2026-honest-takeaways-claude_code-1.ttl>
WHERE {
?case a :CaseStudy ;
schema:name ?name ;
:featuresOrganization ?org .
OPTIONAL { ?case :hasOutcome ?outcome }
}
ORDER BY ?name
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT
?type
(SAMPLE(?s) AS ?sampleEntity)
(SAMPLE(?label) AS ?sampleLabel)
(COUNT(?s) AS ?entityCount)
WHERE {
GRAPH <https://linkeddata.uriburner.com/DAV/demos/daas/cdoiq-2026-honest-takeaways-claude_code-1.ttl> {
?s rdf:type ?type .
OPTIONAL { ?s rdfs:label ?label }
}
}
GROUP BY ?type
ORDER BY DESC(?entityCount)
This knowledge graph infographic was generated from Juan Sequeda's Substack post "CDOIQ 2026: My Honest, No-BS Takeaways" — the source content was transformed into RDF-Turtle and rendered as this HTML infographic. Full generation provenance (skills, model, server platform) is listed once, in the footer below.