{"id":8277,"date":"2026-06-15T11:23:19","date_gmt":"2026-06-15T11:23:19","guid":{"rendered":"http:\/\/version1.thinktankdev.org.uk\/en-us\/?p=8277"},"modified":"2026-07-21T15:04:02","modified_gmt":"2026-07-21T15:04:02","slug":"agentic-ai-hype-and-the-dunning-kruger-effect","status":"publish","type":"post","link":"https:\/\/version1.thinktankdev.org.uk\/en-us\/blog\/agentic-ai-hype-and-the-dunning-kruger-effect\/","title":{"rendered":"Agentic AI hype and the Dunning-Kruger effect"},"content":{"rendered":"<p>A pattern emerges with every major technological advance, and <a href=\"https:\/\/www.version1.com\/ai-strategy-and-implementation\/\">AI<\/a> is no exception.<\/p>\n<p>You\u2019ve probably seen both curves. The Gartner hype cycle tracks how a technology moves from excitement to disillusionment and eventually to something that actually works in practice. <a href=\"https:\/\/en.wikipedia.org\/wiki\/Dunning%E2%80%93Kruger_effect\">The Dunning-Kruger effect<\/a> demonstrates how people with limited knowledge tend to overestimate how much they understand. They&#8217;re not just similar in shape. They describe the same dynamic, one at the individual level and one at the market level. Confidence outpaces reality, then reality catches up.<\/p>\n<p>According to <a href=\"https:\/\/www.gartner.com\/en\/articles\/hype-cycle-for-agentic-ai\">Gartner&#8217;s 2026 Hype Cycle for Agentic AI<\/a>, Agentic AI sits squarely at the peak of inflated expectations. The upward slope of enlightenment is still ahead, but most teams haven\u2019t quite got there yet.<\/p>\n<p>And, as you\u2019d expect at this stage, the &#8216;immediate&#8217; experts are starting to proliferate.<\/p>\n<h2>The one-night expert problem<\/h2>\n<p>You\u2019ve probably seen this in action. Someone runs a few prompts, ships a quick demo, and suddenly has a confident answer to problems they haven\u2019t really investigated properly. We\u2019ve seen this pattern with every tech wave, and this one is no different. The giveaway is usually a sentence that starts with \u201cwe should just build an agent\u201d.<\/p>\n<h3>Customer service problem? Agent<\/h3>\n<h3>Data processing bottleneck? Agent<\/h3>\n<h3>Workflow that took months to map out? Agent<\/h3>\n<p>The paradox here: this is not always wrong. Agents can be very useful in the right context. The problem is deferring to an \u201cagent\u201d as the default answer before you\u2019ve properly understood the problem.<\/p>\n<p>Before you even think about architecture, you need clear answers to a few basics: what\u2019s the task, what level of accuracy do you need, what failure modes are acceptable, what latency can you tolerate, and what does it cost at scale? Most agentic proposals fall apart on one of these, usually cost or accuracy.<\/p>\n<h3>Agents vs Agentic Workflows: a distinction worth making<\/h3>\n<p>There\u2019s also a definitional issue that\u2019s not helping. A proper autonomous agent has genuine autonomy. It plans steps towards a goal, decides which tools to use, and operates in environments where the inputs aren\u2019t predictable. That&#8217;s not hard to build but getting it to work reliably in production is a different story and genuine examples of that are still rare.<\/p>\n<p>What most teams are actually building is something different: an agentic workflow. A defined sequence of steps, with an LLM handling one or more of them, orchestrated by deterministic logic. That\u2019s probably 90% of what is referred to an \u201cagent\u201d today.<\/p>\n<p>And this is nothing new. Back in 2023, once LLMs were available via the main CSPs, you could wire up a Logic App or an RPA flow, drop in an LLM for the reasoning step, and call downstream APIs based on the output. That\u2019s an agentic workflow. The tech was already there, it\u2019s justthe label came later.<\/p>\n<p>There\u2019s nothing wrong with this pattern. In many cases it\u2019s the right solution. The problem is calling it an agent when this isn\u2019t accurate. Once you do that, teams start adding planning loops, tool selection, multi agent coordination, things that were never needed. You end up with higher latency, higher cost, harder debugging, and often worse accuracy. Every extra moving part is another place things can break.<\/p>\n<p>Where the trade-offs start to matter<\/p>\n<p>The trade-offs that actually matter in production are usually three things.<\/p>\n<ul>\n<li><strong>First is accuracy<\/strong>, and this is where things tend to get more complex. \u201cDoes it work\u201d isn\u2019t a metric. You need to define what matters: precision, recall, F1, or something domain specific. In document extraction, missing a field is often worse than picking up the wrong one. In search, recall often matters more than precision. If you get this wrong at design time, you\u2019ve already failed, and it happens more often than people admit<\/li>\n<li><strong>Second is latency<\/strong>. Real-time systems behave very differently from batch ones, and agents with reasoning loops are particularly sensitive here. A workflow that chains a few LLM calls, classification, reasoning, response generation, can easily hit 8 to 12 seconds end to end. That might be fine for overnight processing. It\u2019s not fine for anything customer facing<\/li>\n<li><strong>Third is cost<\/strong>, and this is the one people tend to ignore early on. LLM calls cost money, and at scale that adds up quickly. Retries, failures, and reasoning loops make it worse. Agent-style architectures are especially exposed because every loop means more calls. It\u2019s very easy to build something that looks fine in a demo and becomes expensive in production<\/li>\n<\/ul>\n<h4>What real expertise looks like<\/h4>\n<p>Real expertise in this regard isn\u2019t understanding how to build an agent. It\u2019s knowing when not to.<\/p>\n<p>It\u2019s understanding the full toolbox: classical machine learning (ML) where it\u2019s enough, deterministic rules where requirements are stable, structured pipelines where reliability matters, LLMs where language understanding actually adds value, and agents only when you genuinely need autonomy.<\/p>\n<p>Most systems currently labelled as \u201cAI agents\u201d would be simpler, cheaper, and more reliable as structured workflows with a well-scoped LLM step and some deterministic logic. It\u2019s less exciting. But it also tends to work.<\/p>\n<h4>Getting out of the trough<\/h4>\n<p>We&#8217;re still early in this cycle, and the experimentation is healthy. Hype is a normal part of how new technologies get explored and funded. But if every problem results in the same immediate answer, we&#8217;re not advancing anything. We&#8217;re relabelling old patterns with new vocabulary and calling it innovation. Worse, we risk building systems that are slower, more expensive, and less accurate than simpler alternatives. Not because the technology failed, but because we never asked whether it was the right tool in the first place.<\/p>\n<p>Getting out of the trough means understanding the problem properly, choosing the right approach, and being honest about the trade-offs. That&#8217;s what separates genuine understanding from chasing the latest shiny thing.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A pattern emerges with every major technological advance, and AI is no exception. You\u2019ve probably seen both curves. The Gartner hype cycle tracks how a technology moves from excitement to disillusionment and eventually to something that actually works in practice. The Dunning-Kruger effect demonstrates how people with limited knowledge tend to overestimate how much they [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":8068,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"content-type":"","inline_featured_image":false,"footnotes":""},"categories":[101],"tags":[],"industry":[],"class_list":["post-8277","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog"],"acf":[],"translations":[{"blog_id":1,"post_id":8277,"name":"Europe","code":"EN-GB","hreflang":"en-gb","url":"https:\/\/version1.thinktankdev.org.uk\/blog\/agentic-ai-hype-and-the-dunning-kruger-effect\/","is_current":false},{"blog_id":13,"post_id":8277,"name":"Americas","code":"EN-US","hreflang":"en-us","url":"https:\/\/version1.thinktankdev.org.uk\/en-us\/blog\/agentic-ai-hype-and-the-dunning-kruger-effect\/","is_current":true}],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Agentic AI hype and the Dunning-Kruger effect | Version 1 (US)<\/title>\n<meta name=\"description\" content=\"Agentic AI and the Dunning-Kruger effect: why hype outpaces reality and how to apply AI effectively in practice.\" \/>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Agentic AI hype and the Dunning-Kruger effect | Version 1 (US)\" \/>\n<meta property=\"og:description\" content=\"Agentic AI and the Dunning-Kruger effect: why hype outpaces reality and how to apply AI effectively in practice.\" \/>\n<meta property=\"og:url\" content=\"http:\/\/version1.thinktankdev.org.uk\/en-us\/blog\/agentic-ai-hype-and-the-dunning-kruger-effect\/\" \/>\n<meta property=\"og:site_name\" content=\"Version 1 (US)\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-15T11:23:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-21T15:04:02+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/version1.thinktankdev.org.uk\/en-us\/wp-content\/uploads\/2024\/09\/AI-Halloucination-Blog-Thumb.png.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1080\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"edward\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"edward\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"http:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/blog\\\/agentic-ai-hype-and-the-dunning-kruger-effect\\\/#article\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/blog\\\/agentic-ai-hype-and-the-dunning-kruger-effect\\\/\"},\"author\":{\"name\":\"edward\",\"@id\":\"http:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/#\\\/schema\\\/person\\\/b2fc4a97168c4c95c5182a4f34e31cb3\"},\"headline\":\"Agentic AI hype and the Dunning-Kruger effect\",\"datePublished\":\"2026-06-15T11:23:19+00:00\",\"dateModified\":\"2026-07-21T15:04:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/blog\\\/agentic-ai-hype-and-the-dunning-kruger-effect\\\/\"},\"wordCount\":991,\"publisher\":{\"@id\":\"http:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/#organization\"},\"image\":{\"@id\":\"http:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/blog\\\/agentic-ai-hype-and-the-dunning-kruger-effect\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/AI-Halloucination-Blog-Thumb.png\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"http:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/blog\\\/agentic-ai-hype-and-the-dunning-kruger-effect\\\/\",\"url\":\"http:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/blog\\\/agentic-ai-hype-and-the-dunning-kruger-effect\\\/\",\"name\":\"Agentic AI hype and the Dunning-Kruger effect | Version 1 (US)\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/blog\\\/agentic-ai-hype-and-the-dunning-kruger-effect\\\/#primaryimage\"},\"image\":{\"@id\":\"http:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/blog\\\/agentic-ai-hype-and-the-dunning-kruger-effect\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/AI-Halloucination-Blog-Thumb.png\",\"datePublished\":\"2026-06-15T11:23:19+00:00\",\"dateModified\":\"2026-07-21T15:04:02+00:00\",\"description\":\"Agentic AI and the Dunning-Kruger effect: why hype outpaces reality and how to apply AI effectively in practice.\",\"breadcrumb\":{\"@id\":\"http:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/blog\\\/agentic-ai-hype-and-the-dunning-kruger-effect\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/blog\\\/agentic-ai-hype-and-the-dunning-kruger-effect\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/blog\\\/agentic-ai-hype-and-the-dunning-kruger-effect\\\/#primaryimage\",\"url\":\"https:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/AI-Halloucination-Blog-Thumb.png\",\"contentUrl\":\"https:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/AI-Halloucination-Blog-Thumb.png\",\"width\":1080,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/blog\\\/agentic-ai-hype-and-the-dunning-kruger-effect\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Agentic AI hype and the Dunning-Kruger effect\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/#website\",\"url\":\"http:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/\",\"name\":\"Version 1\",\"description\":\"\",\"publisher\":{\"@id\":\"http:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/#organization\",\"name\":\"Version 1\",\"url\":\"http:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"http:\\\/\\\/version1.thinktankdev.org.uk\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/cropped-cropped-Favicon-2.png\",\"contentUrl\":\"http:\\\/\\\/version1.thinktankdev.org.uk\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/cropped-cropped-Favicon-2.png\",\"width\":512,\"height\":512,\"caption\":\"Version 1\"},\"image\":{\"@id\":\"http:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"http:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/#\\\/schema\\\/person\\\/b2fc4a97168c4c95c5182a4f34e31cb3\",\"name\":\"edward\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0d5dfd2bf64be263733442beb5acffc73038b72c777d26ef33849bb0c641dc83?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0d5dfd2bf64be263733442beb5acffc73038b72c777d26ef33849bb0c641dc83?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0d5dfd2bf64be263733442beb5acffc73038b72c777d26ef33849bb0c641dc83?s=96&d=mm&r=g\",\"caption\":\"edward\"},\"url\":\"https:\\\/\\\/version1.thinktankdev.org.uk\\\/en-us\\\/blog\\\/author\\\/edward\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Agentic AI hype and the Dunning-Kruger effect | Version 1 (US)","description":"Agentic AI and the Dunning-Kruger effect: why hype outpaces reality and how to apply AI effectively in practice.","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_US","og_type":"article","og_title":"Agentic AI hype and the Dunning-Kruger effect | Version 1 (US)","og_description":"Agentic AI and the Dunning-Kruger effect: why hype outpaces reality and how to apply AI effectively in practice.","og_url":"http:\/\/version1.thinktankdev.org.uk\/en-us\/blog\/agentic-ai-hype-and-the-dunning-kruger-effect\/","og_site_name":"Version 1 (US)","article_published_time":"2026-06-15T11:23:19+00:00","article_modified_time":"2026-07-21T15:04:02+00:00","og_image":[{"width":1080,"height":1080,"url":"http:\/\/version1.thinktankdev.org.uk\/en-us\/wp-content\/uploads\/2024\/09\/AI-Halloucination-Blog-Thumb.png.webp","type":"image\/png"}],"author":"edward","twitter_card":"summary_large_image","twitter_misc":{"Written by":"edward","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/version1.thinktankdev.org.uk\/en-us\/blog\/agentic-ai-hype-and-the-dunning-kruger-effect\/#article","isPartOf":{"@id":"http:\/\/version1.thinktankdev.org.uk\/en-us\/blog\/agentic-ai-hype-and-the-dunning-kruger-effect\/"},"author":{"name":"edward","@id":"http:\/\/version1.thinktankdev.org.uk\/en-us\/#\/schema\/person\/b2fc4a97168c4c95c5182a4f34e31cb3"},"headline":"Agentic AI hype and the Dunning-Kruger effect","datePublished":"2026-06-15T11:23:19+00:00","dateModified":"2026-07-21T15:04:02+00:00","mainEntityOfPage":{"@id":"http:\/\/version1.thinktankdev.org.uk\/en-us\/blog\/agentic-ai-hype-and-the-dunning-kruger-effect\/"},"wordCount":991,"publisher":{"@id":"http:\/\/version1.thinktankdev.org.uk\/en-us\/#organization"},"image":{"@id":"http:\/\/version1.thinktankdev.org.uk\/en-us\/blog\/agentic-ai-hype-and-the-dunning-kruger-effect\/#primaryimage"},"thumbnailUrl":"https:\/\/version1.thinktankdev.org.uk\/en-us\/wp-content\/uploads\/2024\/09\/AI-Halloucination-Blog-Thumb.png","articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"http:\/\/version1.thinktankdev.org.uk\/en-us\/blog\/agentic-ai-hype-and-the-dunning-kruger-effect\/","url":"http:\/\/version1.thinktankdev.org.uk\/en-us\/blog\/agentic-ai-hype-and-the-dunning-kruger-effect\/","name":"Agentic AI hype and the Dunning-Kruger effect | Version 1 (US)","isPartOf":{"@id":"http:\/\/version1.thinktankdev.org.uk\/en-us\/#website"},"primaryImageOfPage":{"@id":"http:\/\/version1.thinktankdev.org.uk\/en-us\/blog\/agentic-ai-hype-and-the-dunning-kruger-effect\/#primaryimage"},"image":{"@id":"http:\/\/version1.thinktankdev.org.uk\/en-us\/blog\/agentic-ai-hype-and-the-dunning-kruger-effect\/#primaryimage"},"thumbnailUrl":"https:\/\/version1.thinktankdev.org.uk\/en-us\/wp-content\/uploads\/2024\/09\/AI-Halloucination-Blog-Thumb.png","datePublished":"2026-06-15T11:23:19+00:00","dateModified":"2026-07-21T15:04:02+00:00","description":"Agentic AI and the Dunning-Kruger effect: why hype outpaces reality and how to apply AI effectively in practice.","breadcrumb":{"@id":"http:\/\/version1.thinktankdev.org.uk\/en-us\/blog\/agentic-ai-hype-and-the-dunning-kruger-effect\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/version1.thinktankdev.org.uk\/en-us\/blog\/agentic-ai-hype-and-the-dunning-kruger-effect\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/version1.thinktankdev.org.uk\/en-us\/blog\/agentic-ai-hype-and-the-dunning-kruger-effect\/#primaryimage","url":"https:\/\/version1.thinktankdev.org.uk\/en-us\/wp-content\/uploads\/2024\/09\/AI-Halloucination-Blog-Thumb.png","contentUrl":"https:\/\/version1.thinktankdev.org.uk\/en-us\/wp-content\/uploads\/2024\/09\/AI-Halloucination-Blog-Thumb.png","width":1080,"height":1080},{"@type":"BreadcrumbList","@id":"http:\/\/version1.thinktankdev.org.uk\/en-us\/blog\/agentic-ai-hype-and-the-dunning-kruger-effect\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/version1.thinktankdev.org.uk\/en-us\/"},{"@type":"ListItem","position":2,"name":"Agentic AI hype and the Dunning-Kruger effect"}]},{"@type":"WebSite","@id":"http:\/\/version1.thinktankdev.org.uk\/en-us\/#website","url":"http:\/\/version1.thinktankdev.org.uk\/en-us\/","name":"Version 1","description":"","publisher":{"@id":"http:\/\/version1.thinktankdev.org.uk\/en-us\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/version1.thinktankdev.org.uk\/en-us\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/version1.thinktankdev.org.uk\/en-us\/#organization","name":"Version 1","url":"http:\/\/version1.thinktankdev.org.uk\/en-us\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/version1.thinktankdev.org.uk\/en-us\/#\/schema\/logo\/image\/","url":"http:\/\/version1.thinktankdev.org.uk\/wp-content\/uploads\/2026\/05\/cropped-cropped-Favicon-2.png","contentUrl":"http:\/\/version1.thinktankdev.org.uk\/wp-content\/uploads\/2026\/05\/cropped-cropped-Favicon-2.png","width":512,"height":512,"caption":"Version 1"},"image":{"@id":"http:\/\/version1.thinktankdev.org.uk\/en-us\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"http:\/\/version1.thinktankdev.org.uk\/en-us\/#\/schema\/person\/b2fc4a97168c4c95c5182a4f34e31cb3","name":"edward","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0d5dfd2bf64be263733442beb5acffc73038b72c777d26ef33849bb0c641dc83?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0d5dfd2bf64be263733442beb5acffc73038b72c777d26ef33849bb0c641dc83?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0d5dfd2bf64be263733442beb5acffc73038b72c777d26ef33849bb0c641dc83?s=96&d=mm&r=g","caption":"edward"},"url":"https:\/\/version1.thinktankdev.org.uk\/en-us\/blog\/author\/edward\/"}]}},"_links":{"self":[{"href":"https:\/\/version1.thinktankdev.org.uk\/en-us\/wp-json\/wp\/v2\/posts\/8277","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/version1.thinktankdev.org.uk\/en-us\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/version1.thinktankdev.org.uk\/en-us\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/version1.thinktankdev.org.uk\/en-us\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/version1.thinktankdev.org.uk\/en-us\/wp-json\/wp\/v2\/comments?post=8277"}],"version-history":[{"count":2,"href":"https:\/\/version1.thinktankdev.org.uk\/en-us\/wp-json\/wp\/v2\/posts\/8277\/revisions"}],"predecessor-version":[{"id":12548,"href":"https:\/\/version1.thinktankdev.org.uk\/en-us\/wp-json\/wp\/v2\/posts\/8277\/revisions\/12548"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/version1.thinktankdev.org.uk\/en-us\/wp-json\/wp\/v2\/media\/8068"}],"wp:attachment":[{"href":"https:\/\/version1.thinktankdev.org.uk\/en-us\/wp-json\/wp\/v2\/media?parent=8277"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/version1.thinktankdev.org.uk\/en-us\/wp-json\/wp\/v2\/categories?post=8277"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/version1.thinktankdev.org.uk\/en-us\/wp-json\/wp\/v2\/tags?post=8277"},{"taxonomy":"industry","embeddable":true,"href":"https:\/\/version1.thinktankdev.org.uk\/en-us\/wp-json\/wp\/v2\/industry?post=8277"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}