{"id":112927,"date":"2026-04-09T09:06:01","date_gmt":"2026-04-09T16:06:01","guid":{"rendered":"https:\/\/www.backblaze.com\/blog\/?p=112927"},"modified":"2026-04-09T09:06:04","modified_gmt":"2026-04-09T16:06:04","slug":"data-orchestration-in-the-age-of-autonomous-agents-architectural-patterns-building-on-nemoclaw-openclaw","status":"publish","type":"post","link":"https:\/\/www.backblaze.com\/blog\/data-orchestration-in-the-age-of-autonomous-agents-architectural-patterns-building-on-nemoclaw-openclaw\/","title":{"rendered":"Data Orchestration in the Age of Autonomous Agents: Architectural Patterns Building on NemoClaw &amp; OpenClaw"},"content":{"rendered":"\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"583\" src=\"https:\/\/backblazeprod.wpenginepowered.com\/wp-content\/uploads\/2026\/04\/Q126-0011-Blog-Header-1440x820-1-1024x583.png\" alt=\"A decorative image showing glowing cubes on a red background. \" class=\"wp-image-112929\" srcset=\"https:\/\/backblazeprod.wpenginepowered.com\/wp-content\/uploads\/2026\/04\/Q126-0011-Blog-Header-1440x820-1-1024x583.png 1024w, https:\/\/backblazeprod.wpenginepowered.com\/wp-content\/uploads\/2026\/04\/Q126-0011-Blog-Header-1440x820-1-300x171.png 300w, https:\/\/backblazeprod.wpenginepowered.com\/wp-content\/uploads\/2026\/04\/Q126-0011-Blog-Header-1440x820-1-768x437.png 768w, https:\/\/backblazeprod.wpenginepowered.com\/wp-content\/uploads\/2026\/04\/Q126-0011-Blog-Header-1440x820-1.png 1440w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<div style=\"height:15px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>OpenClaw crossed 250,000 GitHub stars in 60 days, surpassing React&#8217;s decade-long record to become the most-starred software project on GitHub. At <a href=\"https:\/\/www.brighttalk.com\/webcast\/14807\/664519?utm_source=Backblaze&amp;utm_medium=brighttalk&amp;utm_campaign=664519\" target=\"_blank\" rel=\"noreferrer noopener\">GTC 2026<\/a>, NVIDIA CEO Jensen Huang declared it &#8220;the operating system for personal AI&#8221; and <a href=\"https:\/\/www.youtube.com\/watch?v=jw_o0xr8MWU\" target=\"_blank\" rel=\"noreferrer noopener\">told the room:<\/a> &#8220;For the CEOs, the question is, what&#8217;s your OpenClaw strategy?&#8221;<\/p>\n\n\n\n<p>At NVIDIA&#8217;s Hack for Impact hackathon at GTC, I built and watched engineers build autonomous agents on NemoClaw, OpenClaw, and Nemotron. Wildfire detection ingesting NASA satellite data. Crime pattern analysis across police jurisdictions. Energy grid anomaly forecasting. <\/p>\n\n\n\n<p>The same architectural question surfaced in every project: agents that collect and generate data at scale need a deliberate strategy for archiving, retaining, and surfacing that data. Without one, agent-produced artifacts become dark data, generated but inaccessible, unversioned, and invisible to the rest of the organization. That question only gets more consequential in production.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Beyond NemoClaw&#8217;s runtime governance: Architecting for data persistence<\/h2>\n\n\n\n<p>NVIDIA&#8217;s NemoClaw wraps OpenClaw with security through OpenShell, a runtime that sandboxes each agent at the kernel level. Network requests, file access, and inference calls are governed by declarative YAML policy, enforced outside the agent&#8217;s process so the agent itself can never override them.<\/p>\n\n\n\n<p><a href=\"https:\/\/github.com\/openclaw\/openclaw\" target=\"_blank\" rel=\"noreferrer noopener\">OpenClaw<\/a> agents create workspace files (SOUL.md, USER.md, IDENTITY.md) that define the agent&#8217;s personality, preferences, and behavioral context. Inside a NemoClaw sandbox, this state lives in a <a href=\"https:\/\/www.backblaze.com\/blog\/5-tools-to-integrate-object-storage-and-kubernetes\/\" target=\"_blank\" rel=\"noreferrer noopener\">Kubernetes Persistent Volume Claim<\/a> inside an embedded K3s cluster, and the community is already asking for better backup and restore workflows on the NemoClaw GitHub repo. <\/p>\n\n\n\n<p>At fleet scale, with dozens of agents each maintaining persistent memory, conversation history, and skill artifacts, a <a href=\"https:\/\/www.backblaze.com\/blog\/architecting-your-ai-data-pipeline-using-b2-overdrive\/\" target=\"_blank\" rel=\"noreferrer noopener\">durable storage layer<\/a> beneath the runtime is what keeps agent state from becoming disposable. What that layer looks like depends on the type of data your agents produce.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The agentic data layer<\/h2>\n\n\n\n<p>Two categories of data define the storage requirements for autonomous agents.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Operational artifacts<\/h3>\n\n\n\n<p>Autonomous agents generate reports, analyses, transformed datasets, alerts, and increasingly, multimodal outputs like processed video, audio, and images. Inside NemoClaw&#8217;s sandbox, filesystem access is confined to <code>\/sandbox<\/code> and <code>\/tmp<\/code>, both ephemeral by design. <\/p>\n\n\n\n<p>Cloud storage decouples the artifact from the runtime, enables scoped access via URLs, and plugs into every major orchestration framework. Bucket-level permissions and scoped application keys extend governance into the storage layer, so each agent or agent class gets write access only to its designated output path. <\/p>\n\n\n\n<p>Lineage matters here too: Each artifact should trace back to which agent, model, inputs, and policy produced it. Our GTC project, FireWatch, used <a href=\"https:\/\/www.backblaze.com\/cloud-storage\/industries\/ai-ml\" target=\"_blank\" rel=\"noreferrer noopener\">Backblaze B2<\/a> exactly this way, uploading wildfire risk reports with a bucket-scoped key, generating shareable URLs, and embedding them directly in stakeholder alert emails.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">State and compliance data<\/h3>\n\n\n\n<p>Agent memory, skill artifacts, and audit logs from policy decisions all require durable, long-term retention. NemoClaw&#8217;s privacy router splits inference between local and cloud models based on policy, generating routing metadata that compliance teams will want to retain and query. Cloud storage brings high durability, append-only immutability for audit trails, and lifecycle policies for tiered retention as data ages. <\/p>\n\n\n\n<p>We built an open source OpenClaw plugin (<a href=\"https:\/\/github.com\/backblaze-b2-samples\/openclaw-b2-sync-backup\" target=\"_blank\" rel=\"noreferrer noopener\">openclaw-b2-backup<\/a>) around this: Encrypted snapshots of agent config, memory, and sessions pushed to B2 on a daily cron, before compaction events, and on gateway shutdown. Three fields to configure, rollback from chat, one-command migration to a new machine.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The agent landscape is expanding. The storage pattern is consistent.<\/h2>\n\n\n\n<p>The open-source, autonomous AI agent ecosystem now spans at least 16 variants, each optimized for a different deployment context: NanoClaw for container-isolated security, ZeroClaw for edge deployment in a 3.4MB Rust binary, IronClaw for regulated industries through Trusted Execution Environments, managed platforms like ClawCloud and Maxclaw, and Qwen-Agent from Alibaba for the Chinese developer ecosystem.<\/p>\n\n\n\n<p>Whether self-hosted or managed, all of them produce artifacts that need to persist beyond the runtime. Teams building autonomous agents for their organizations will need durable output sharing, state backup, and cross-agent data access regardless of which runtime they choose.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What enterprise AI leaders should build toward<\/h2>\n\n\n\n<p><strong>Architect your agent data orchestration on cloud storage.<\/strong> As organizations scale from initial agent deployments to multi-team production workloads, data volume grows with every agent added, every week they run, and every modality they process. Agents gather, generate, and transform data continuously. Cloud storage gives you a durable layer for managing that lifecycle: ingestion and collection, versioned outputs, long-term archival, lifecycle policies for retention, and portability across agent platforms as your organization&#8217;s runtime choices evolve. Establishing this now, while the ecosystem is still forming, is the strategic move.<\/p>\n\n\n\n<p><strong>Automate <a href=\"https:\/\/www.backblaze.com\/blog\/back-up-your-entire-openclaw-state-to-backblaze-b2\/\" target=\"_blank\" rel=\"noreferrer noopener\">agent state backup<\/a> as part of your deployment standard.<\/strong> Agents building context across customer data, internal systems, and team workflows for weeks carry real operational value. Automated workspace snapshots protect that investment, create a disaster recovery path, and enable migration across environments.<\/p>\n\n\n\n<p><strong>Design for lineage and audit from day one.<\/strong> Policy decisions, tool invocations, inference routing, and multimodal processing chains all generate metadata. For enterprises operating under <a href=\"https:\/\/www.backblaze.com\/cloud-storage\/compliance\" target=\"_blank\" rel=\"noreferrer noopener\">SOC 2, HIPAA, or GDPR,<\/a> storing lineage and audit data alongside your artifacts in cloud storage means your compliance posture is ready before the audit, not after.<\/p>\n\n\n\n<p>NemoClaw brought governance to the agentic stack. If your organization is deploying autonomous agents today, data orchestration and lineage are your next architectural decisions. Get them right early, and your agents scale with durable state, shareable outputs, and auditable history from day one.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>As autonomous agents scale, cloud storage provides the critical durable layer for managing the full data lifecycle\u2014ingestion, versioning, archival, and retention\u2014of operational artifacts and compliance data beyond the ephemeral NemoClaw runtime.<\/p>\n","protected":false},"author":220,"featured_media":112929,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"content-type":"","footnotes":""},"categories":[7,434,438],"tags":[489,468],"class_list":["post-112927","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cloud-storage","category-featured-1","category-featured-cloud-storage","tag-ai-ml","tag-b2cloud","entry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Data Orchestration in the Age of Autonomous Agents: Architectural Patterns Building on NemoClaw &amp; OpenClaw<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.backblaze.com\/blog\/data-orchestration-in-the-age-of-autonomous-agents-architectural-patterns-building-on-nemoclaw-openclaw\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Data Orchestration in the Age of Autonomous Agents: Architectural Patterns Building on NemoClaw &amp; OpenClaw\" \/>\n<meta property=\"og:description\" content=\"As autonomous agents scale, cloud storage provides the critical durable layer for managing the full data lifecycle\u2014ingestion, versioning, archival, and retention\u2014of operational artifacts and compliance data beyond the ephemeral NemoClaw runtime.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.backblaze.com\/blog\/data-orchestration-in-the-age-of-autonomous-agents-architectural-patterns-building-on-nemoclaw-openclaw\/\" \/>\n<meta property=\"og:site_name\" content=\"Backblaze Blog | Cloud Storage &amp; Cloud Backup\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/backblaze\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-09T16:06:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-09T16:06:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/backblazeprod.wpenginepowered.com\/wp-content\/uploads\/2026\/04\/Q126-0011-Blog-Header-1440x820-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1440\" \/>\n\t<meta property=\"og:image:height\" content=\"820\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Jeronimo De Leon\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@backblaze\" \/>\n<meta name=\"twitter:site\" content=\"@backblaze\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeronimo De Leon\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Data Orchestration in the Age of Autonomous Agents: Architectural Patterns Building on NemoClaw &amp; OpenClaw","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.backblaze.com\/blog\/data-orchestration-in-the-age-of-autonomous-agents-architectural-patterns-building-on-nemoclaw-openclaw\/","og_locale":"en_US","og_type":"article","og_title":"Data Orchestration in the Age of Autonomous Agents: Architectural Patterns Building on NemoClaw &amp; OpenClaw","og_description":"As autonomous agents scale, cloud storage provides the critical durable layer for managing the full data lifecycle\u2014ingestion, versioning, archival, and retention\u2014of operational artifacts and compliance data beyond the ephemeral NemoClaw runtime.","og_url":"https:\/\/www.backblaze.com\/blog\/data-orchestration-in-the-age-of-autonomous-agents-architectural-patterns-building-on-nemoclaw-openclaw\/","og_site_name":"Backblaze Blog | Cloud Storage &amp; Cloud Backup","article_publisher":"https:\/\/www.facebook.com\/backblaze","article_published_time":"2026-04-09T16:06:01+00:00","article_modified_time":"2026-04-09T16:06:04+00:00","og_image":[{"width":1440,"height":820,"url":"https:\/\/backblazeprod.wpenginepowered.com\/wp-content\/uploads\/2026\/04\/Q126-0011-Blog-Header-1440x820-1.png","type":"image\/png"}],"author":"Jeronimo De Leon","twitter_card":"summary_large_image","twitter_creator":"@backblaze","twitter_site":"@backblaze","twitter_misc":{"Written by":"Jeronimo De Leon","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.backblaze.com\/blog\/data-orchestration-in-the-age-of-autonomous-agents-architectural-patterns-building-on-nemoclaw-openclaw\/#article","isPartOf":{"@id":"https:\/\/www.backblaze.com\/blog\/data-orchestration-in-the-age-of-autonomous-agents-architectural-patterns-building-on-nemoclaw-openclaw\/"},"author":{"name":"Jeronimo De Leon","@id":"https:\/\/backblazeprod.wpenginepowered.com\/blog\/#\/schema\/person\/f370aeffc6ee12eaaec36fe5ab1d065f"},"headline":"Data Orchestration in the Age of Autonomous Agents: Architectural Patterns Building on NemoClaw &amp; OpenClaw","datePublished":"2026-04-09T16:06:01+00:00","dateModified":"2026-04-09T16:06:04+00:00","mainEntityOfPage":{"@id":"https:\/\/www.backblaze.com\/blog\/data-orchestration-in-the-age-of-autonomous-agents-architectural-patterns-building-on-nemoclaw-openclaw\/"},"wordCount":902,"commentCount":0,"publisher":{"@id":"https:\/\/backblazeprod.wpenginepowered.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.backblaze.com\/blog\/data-orchestration-in-the-age-of-autonomous-agents-architectural-patterns-building-on-nemoclaw-openclaw\/#primaryimage"},"thumbnailUrl":"https:\/\/backblazeprod.wpenginepowered.com\/wp-content\/uploads\/2026\/04\/Q126-0011-Blog-Header-1440x820-1.png","keywords":["AI\/ML","B2Cloud"],"articleSection":["Cloud Storage","Featured","Featured-Cloud Storage"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.backblaze.com\/blog\/data-orchestration-in-the-age-of-autonomous-agents-architectural-patterns-building-on-nemoclaw-openclaw\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.backblaze.com\/blog\/data-orchestration-in-the-age-of-autonomous-agents-architectural-patterns-building-on-nemoclaw-openclaw\/","url":"https:\/\/www.backblaze.com\/blog\/data-orchestration-in-the-age-of-autonomous-agents-architectural-patterns-building-on-nemoclaw-openclaw\/","name":"Data Orchestration in the Age of Autonomous Agents: Architectural Patterns Building on NemoClaw &amp; OpenClaw","isPartOf":{"@id":"https:\/\/backblazeprod.wpenginepowered.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.backblaze.com\/blog\/data-orchestration-in-the-age-of-autonomous-agents-architectural-patterns-building-on-nemoclaw-openclaw\/#primaryimage"},"image":{"@id":"https:\/\/www.backblaze.com\/blog\/data-orchestration-in-the-age-of-autonomous-agents-architectural-patterns-building-on-nemoclaw-openclaw\/#primaryimage"},"thumbnailUrl":"https:\/\/backblazeprod.wpenginepowered.com\/wp-content\/uploads\/2026\/04\/Q126-0011-Blog-Header-1440x820-1.png","datePublished":"2026-04-09T16:06:01+00:00","dateModified":"2026-04-09T16:06:04+00:00","breadcrumb":{"@id":"https:\/\/www.backblaze.com\/blog\/data-orchestration-in-the-age-of-autonomous-agents-architectural-patterns-building-on-nemoclaw-openclaw\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.backblaze.com\/blog\/data-orchestration-in-the-age-of-autonomous-agents-architectural-patterns-building-on-nemoclaw-openclaw\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.backblaze.com\/blog\/data-orchestration-in-the-age-of-autonomous-agents-architectural-patterns-building-on-nemoclaw-openclaw\/#primaryimage","url":"https:\/\/backblazeprod.wpenginepowered.com\/wp-content\/uploads\/2026\/04\/Q126-0011-Blog-Header-1440x820-1.png","contentUrl":"https:\/\/backblazeprod.wpenginepowered.com\/wp-content\/uploads\/2026\/04\/Q126-0011-Blog-Header-1440x820-1.png","width":1440,"height":820,"caption":"A decorative image showing glowing cubes on a red background."},{"@type":"BreadcrumbList","@id":"https:\/\/www.backblaze.com\/blog\/data-orchestration-in-the-age-of-autonomous-agents-architectural-patterns-building-on-nemoclaw-openclaw\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/backblazeprod.wpenginepowered.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Data Orchestration in the Age of Autonomous Agents: Architectural Patterns Building on NemoClaw &amp; OpenClaw"}]},{"@type":"WebSite","@id":"https:\/\/backblazeprod.wpenginepowered.com\/blog\/#website","url":"https:\/\/backblazeprod.wpenginepowered.com\/blog\/","name":"Backblaze Cloud Solutions Blog","description":"Cloud Storage &amp; Cloud Backup","publisher":{"@id":"https:\/\/backblazeprod.wpenginepowered.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/backblazeprod.wpenginepowered.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/backblazeprod.wpenginepowered.com\/blog\/#organization","name":"Backblaze","url":"https:\/\/backblazeprod.wpenginepowered.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/backblazeprod.wpenginepowered.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/i0.wp.com\/www.backblaze.com\/blog\/wp-content\/uploads\/2017\/12\/backblaze_icon_transparent.png?fit=512%2C512&ssl=1","contentUrl":"https:\/\/i0.wp.com\/www.backblaze.com\/blog\/wp-content\/uploads\/2017\/12\/backblaze_icon_transparent.png?fit=512%2C512&ssl=1","width":512,"height":512,"caption":"Backblaze"},"image":{"@id":"https:\/\/backblazeprod.wpenginepowered.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/backblaze","https:\/\/x.com\/backblaze","https:\/\/www.youtube.com\/user\/Backblaze","https:\/\/en.wikipedia.org\/wiki\/Backblaze"]},{"@type":"Person","@id":"https:\/\/backblazeprod.wpenginepowered.com\/blog\/#\/schema\/person\/f370aeffc6ee12eaaec36fe5ab1d065f","name":"Jeronimo De Leon","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/backblazeprod.wpenginepowered.com\/wp-content\/uploads\/2025\/07\/Backblaze_Author_Jeronimo-De-Leon-150x150.jpg","url":"https:\/\/backblazeprod.wpenginepowered.com\/wp-content\/uploads\/2025\/07\/Backblaze_Author_Jeronimo-De-Leon-150x150.jpg","contentUrl":"https:\/\/backblazeprod.wpenginepowered.com\/wp-content\/uploads\/2025\/07\/Backblaze_Author_Jeronimo-De-Leon-150x150.jpg","caption":"Jeronimo De Leon"},"description":"Jeronimo De Leon is a seasoned product management leader with over 10 years of experience driving AI-driven innovation across enterprise and startup environments. Currently serving as Senior Product Manager, AI at Backblaze, he leads the development of AI\/ML features, focuses on how Backblaze enhances the AI data lifecycle for customers' MLOps architectures, and implements AI tools and agents to optimize internal operations.","url":"https:\/\/backblazeprod.wpenginepowered.com\/blog\/author\/jeronimodeleon\/"}]}},"jetpack_featured_media_url":"https:\/\/backblazeprod.wpenginepowered.com\/wp-content\/uploads\/2026\/04\/Q126-0011-Blog-Header-1440x820-1.png","_links":{"self":[{"href":"https:\/\/backblazeprod.wpenginepowered.com\/blog\/wp-json\/wp\/v2\/posts\/112927","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/backblazeprod.wpenginepowered.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/backblazeprod.wpenginepowered.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/backblazeprod.wpenginepowered.com\/blog\/wp-json\/wp\/v2\/users\/220"}],"replies":[{"embeddable":true,"href":"https:\/\/backblazeprod.wpenginepowered.com\/blog\/wp-json\/wp\/v2\/comments?post=112927"}],"version-history":[{"count":0,"href":"https:\/\/backblazeprod.wpenginepowered.com\/blog\/wp-json\/wp\/v2\/posts\/112927\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/backblazeprod.wpenginepowered.com\/blog\/wp-json\/wp\/v2\/media\/112929"}],"wp:attachment":[{"href":"https:\/\/backblazeprod.wpenginepowered.com\/blog\/wp-json\/wp\/v2\/media?parent=112927"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/backblazeprod.wpenginepowered.com\/blog\/wp-json\/wp\/v2\/categories?post=112927"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/backblazeprod.wpenginepowered.com\/blog\/wp-json\/wp\/v2\/tags?post=112927"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}