{"id":34660,"date":"2024-07-10T07:00:00","date_gmt":"2024-07-10T14:00:00","guid":{"rendered":"https:\/\/cloudinary.com\/blog\/?p=34660"},"modified":"2025-11-26T21:36:08","modified_gmt":"2025-11-27T05:36:08","slug":"mach-architecture-in-practice","status":"publish","type":"post","link":"https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice","title":{"rendered":"MACH Architecture in Practice"},"content":{"rendered":"<div class=\"wp-block-cloudinary-markdown \"><p>Today\u2019s businesses are constantly seeking ways to build technology stacks that are flexible, scalable, and future-proof. This is where MACH architecture comes in.<\/p>\n<p><a href=\"https:\/\/machalliance.org\/mach-technology\">MACH<\/a> stands for <strong>M<\/strong>icroservices, <strong>A<\/strong>PI-first, <strong>C<\/strong>loud-native, and <strong>H<\/strong>eadless. It\u2019s a set of principles that, when implemented together, enable companies to compose best-in-class solutions and adapt quickly to changing customer needs. <a href=\"https:\/\/machalliance.org\/\">MACH Alliance<\/a>, which Cloudinary is a part of, is a nonprofit industry body dedicated to promoting MACH principles. Its members include software vendors, system integrators, and other technology providers who adhere to these principles.<\/p>\n<p>Think of MACH architecture like a gourmet meal made of individual, high-quality ingredients sourced from specialized suppliers. Each ingredient (microservice) is carefully chosen for its unique flavor and can be combined to create different dishes. The chef (developer) uses recipes and techniques (APIs) to combine these ingredients. Rather than being limited to a fixed menu, the restaurant can easily adapt its offerings based on seasonal availability, customer preferences, and new culinary trends \u2014 just like how MACH architecture allows continuous flexibility.<\/p>\n<p>In this blog post, we\u2019ll explore MACH architecture in practice and how to build an e-commerce site using MACH principles.<\/p>\n<h2>Understanding the MACH Principles<\/h2>\n<p>Before diving into the practical application of MACH architecture, let\u2019s briefly examine each of the four principles:<\/p>\n<ul>\n<li>\n<strong>Microservices<\/strong>. Instead of building a monolithic application, the microservices approach involves breaking down the system into smaller, independently deployable components. This approach allows for greater scalability and the ability to update or replace individual components without affecting the entire platform. For example, one microservice might be a Node web service API that manages users, while another might be a Java web service that processes user orders.<\/li>\n<li>\n<strong>API-first<\/strong>. An API-first approach prioritizes the development of well-defined APIs using common standards (such as REST or GraphQL) that enable communication between different services. This allows easy integration with various pluggable third-party solutions. By using common API standards, APIs are technology-agnostic. You can use any popular technology to access them \u2014 from Node.js, Python, and PHP to Java.<\/li>\n<li>\n<strong>Cloud-native<\/strong>. Cloud-native applications are designed specifically for cloud computing and delivery through the cloud. By leveraging independent, cloud-native components, businesses can quickly access additional resources and infrastructure to adapt to changing demands. Imagine an e-commerce site during Black Friday, for example. With a cloud-native approach, the site can scale up to meet the demand of big shopping moments and scale down when there is less traffic. Standard cloud providers include AWS, Azure, and Google Cloud, and platforms such as Cloudinary, <a href=\"https:\/\/www.contentful.com\/\">Contentful<\/a>, and <a href=\"https:\/\/commercetools.com\/\">commercetools<\/a> are built on top of such providers.<\/li>\n<li>\n<strong>Headless<\/strong>. A headless architecture separates the frontend delivery (user experiences) from the backend technology. This approach enables the creation of multiple user interfaces and customer touchpoints while allowing for greater flexibility in the backend components. Typically, headless apps expose an API that any frontend, be it a web app or a mobile app, can utilize.<\/li>\n<\/ul>\n<h2>Building an E-commerce Site With MACH Architecture<\/h2>\n<p>Now, let\u2019s explore how MACH principles can be applied by building an e-commerce site. We\u2019ll break down the process into several key components and discuss how each adheres to the MACH principles.<\/p>\n<h3>Frontend Development With Next.js<\/h3>\n<p>For the frontend of our e-commerce site, we can use <a href=\"https:\/\/nextjs.org\/\">Next.js<\/a>, a popular React metaframework well-known for its server-side rendering (SSR) capabilities, which can drastically improve the performance of web applications. Next.js allows us to create a pure frontend project that communicates with other parts of the solution via standard APIs. Next.js also gives us the full freedom to design the frontend experience how we want. We can build it from scratch or utilize other frameworks and component libraries such as <a href=\"https:\/\/ui.shadcn.com\/\">Shadcn<\/a> to make it visually pleasing yet accessible and follow best practices.<\/p>\n<p>To deploy our Next.js frontend, we can use <a href=\"https:\/\/vercel.com\/\">Vercel<\/a>, a cloud platform for static sites and serverless functions. Vercel is the maintainer of Next, and therefore is a first-class provider for deployment of Next.js applications in the cloud. However, Vercel is not the only option for deploying Next.js; other options exist too, such as <a href=\"https:\/\/www.netlify.com\/\">Netlify<\/a> and <a href=\"https:\/\/aws.amazon.com\/amplify\/\">AWS Amplify<\/a>.<\/p>\n<h3>E-commerce Functionality With commercetools<\/h3>\n<p>For the core e-commerce functionality, we can leverage commercetools, a headless commerce platform that provides a set of APIs and tools for building custom e-commerce experiences. <a href=\"https:\/\/commercetools.com\/\">Commercetools<\/a> advertises itself as \u201ccomposable commerce,\u201d where you can take plug-and-play components and integrate them into the rest of your solution. With commercetools, we can define our product catalog, product types, and other necessary configurations, all accessible through a comprehensive API.<\/p>\n<p>Our Next.js frontend will communicate with the commercetools API to read products and  manage carts, orders, and customer data. This separation of concerns between the frontend and backend aligns with the headless principle of MACH, allowing for greater flexibility and customization in both layers.<\/p>\n<p>commercetools also follows a microservices architecture, with different services responsible for specific e-commerce functionalities. This enables us to scale and update individual components independently, adhering to the microservices principle of MACH.<\/p>\n<h3>Media Management With Cloudinary<\/h3>\n<p>We can integrate Cloudinary to handle product visuals and other media assets. Cloudinary\u2019s powerful API for uploading, storing, and transforming media files makes it an ideal choice for our MACH-based e-commerce site.<\/p>\n<p>Our Next.js frontend will use the Cloudinary API to fetch and display media assets like product images and videos. Cloudinary\u2019s URL-based transformations allow us to optimize and manipulate images on the fly, ensuring fast load times and responsive design across devices.<\/p>\n<p>By leveraging Cloudinary\u2019s API and cloud-native infrastructure, we adhere to the API-first and cloud-native principles of MACH, enabling seamless integration and scalability for our media management needs.<\/p>\n<h3>Content Management With Contentful<\/h3>\n<p>To manage blog posts and other marketing content, we can use <a href=\"https:\/\/www.contentful.com\/\">Contentful<\/a>, a headless content management system (CMS). Contentful allows us to define a flexible content model, making it easy to structure and manage content.<\/p>\n<p>Contentful has both a REST and a GraphQL API, and our Next.js frontend can integrate with the Contentful API to fetch and display content. This decoupled approach, where the frontend communicates with the CMS via API, aligns with the headless and API-first principles of MACH.<\/p>\n<p>Using Contentful, we can enable content editors and marketers to manage and update content independently of the frontend development process. This separation of concerns enhances flexibility and allows for faster iteration and experimentation.<\/p>\n<h3>Integration and Deployment<\/h3>\n<p>With all the components, our e-commerce site will be fully functional and adhere to the MACH principles. The frontend, built with Next.js and deployed on Vercel, will communicate with the commercetools API for e-commerce functionality, the Cloudinary API for media management, and the Contentful API for marketing content management.<\/p>\n<p>Each component is independently scalable, replaceable, and can be continuously improved without affecting the others. This modular architecture allows for greater agility and faster deployment of new features and improvements. Imagine if you had to build this solution from scratch. The required effort would be orders of magnitude greater.<\/p>\n<h2>Conclusion<\/h2>\n<p>Building an e-commerce site using MACH principles demonstrates the power and flexibility of this architectural approach. Like using Lego bricks, we can hand-pick the best-in-class services for different parts of our product, making it modular, scalable, and highly customizable. In our case, we\u2019ve shown an example of how we can use Next.js\/Vercel, commercetools, Cloudinary, and Contentful to build a full-blown e-commerce solution that can compete with the best.<\/p>\n<p>Whether you\u2019re an enterprise building the next big thing, or even a smaller company or an individual, check out how MACH and Cloudinary can help you build a future-proof solution.<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":87,"featured_media":34662,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_cloudinary_featured_overwrite":false,"footnotes":""},"categories":[1],"tags":[25,98,356],"class_list":["post-34660","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","tag-asset-management","tag-e-commerce","tag-mach-alliance"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.6 (Yoast SEO v26.9) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>MACH Architecture in Practice<\/title>\n<meta name=\"description\" content=\"Leverage MACH principles to build a flexible, scalable e-commerce website using Next.js, commercetools, Cloudinary, and Contentful.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"MACH Architecture in Practice\" \/>\n<meta property=\"og:description\" content=\"Leverage MACH principles to build a flexible, scalable e-commerce website using Next.js, commercetools, Cloudinary, and Contentful.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice\" \/>\n<meta property=\"og:site_name\" content=\"Cloudinary Blog\" \/>\n<meta property=\"article:published_time\" content=\"2024-07-10T14:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-27T05:36:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1720041563\/mach_architecture-blog\/mach_architecture-blog.jpg?_i=AA\" \/>\n\t<meta property=\"og:image:width\" content=\"2000\" \/>\n\t<meta property=\"og:image:height\" content=\"1100\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"melindapham\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"NewsArticle\",\"@id\":\"https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice#article\",\"isPartOf\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice\"},\"author\":{\"name\":\"melindapham\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/0d5ad601e4c3b5be89245dfb14be42d9\"},\"headline\":\"MACH Architecture in Practice\",\"datePublished\":\"2024-07-10T14:00:00+00:00\",\"dateModified\":\"2025-11-27T05:36:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice\"},\"wordCount\":4,\"publisher\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice#primaryimage\"},\"thumbnailUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1720041563\/mach_architecture-blog\/mach_architecture-blog.jpg?_i=AA\",\"keywords\":[\"Asset Management\",\"E-commerce\",\"MACH Alliance\"],\"inLanguage\":\"en-US\",\"copyrightYear\":\"2024\",\"copyrightHolder\":{\"@id\":\"https:\/\/cloudinary.com\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice\",\"url\":\"https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice\",\"name\":\"MACH Architecture in Practice\",\"isPartOf\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice#primaryimage\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice#primaryimage\"},\"thumbnailUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1720041563\/mach_architecture-blog\/mach_architecture-blog.jpg?_i=AA\",\"datePublished\":\"2024-07-10T14:00:00+00:00\",\"dateModified\":\"2025-11-27T05:36:08+00:00\",\"description\":\"Leverage MACH principles to build a flexible, scalable e-commerce website using Next.js, commercetools, Cloudinary, and Contentful.\",\"breadcrumb\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice#primaryimage\",\"url\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1720041563\/mach_architecture-blog\/mach_architecture-blog.jpg?_i=AA\",\"contentUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1720041563\/mach_architecture-blog\/mach_architecture-blog.jpg?_i=AA\",\"width\":2000,\"height\":1100},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cloudinary.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"MACH Architecture in Practice\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#website\",\"url\":\"https:\/\/cloudinary.com\/blog\/\",\"name\":\"Cloudinary Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cloudinary.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#organization\",\"name\":\"Cloudinary Blog\",\"url\":\"https:\/\/cloudinary.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA\",\"contentUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA\",\"width\":312,\"height\":60,\"caption\":\"Cloudinary Blog\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/0d5ad601e4c3b5be89245dfb14be42d9\",\"name\":\"melindapham\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/e6f989fa97fe94be61596259d8629c3df65aec4c7da5c0000f90d810f313d4f4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/e6f989fa97fe94be61596259d8629c3df65aec4c7da5c0000f90d810f313d4f4?s=96&d=mm&r=g\",\"caption\":\"melindapham\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"MACH Architecture in Practice","description":"Leverage MACH principles to build a flexible, scalable e-commerce website using Next.js, commercetools, Cloudinary, and Contentful.","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:\/\/cloudinary.com\/blog\/mach-architecture-in-practice","og_locale":"en_US","og_type":"article","og_title":"MACH Architecture in Practice","og_description":"Leverage MACH principles to build a flexible, scalable e-commerce website using Next.js, commercetools, Cloudinary, and Contentful.","og_url":"https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice","og_site_name":"Cloudinary Blog","article_published_time":"2024-07-10T14:00:00+00:00","article_modified_time":"2025-11-27T05:36:08+00:00","og_image":[{"width":2000,"height":1100,"url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1720041563\/mach_architecture-blog\/mach_architecture-blog.jpg?_i=AA","type":"image\/jpeg"}],"author":"melindapham","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"NewsArticle","@id":"https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice#article","isPartOf":{"@id":"https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice"},"author":{"name":"melindapham","@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/0d5ad601e4c3b5be89245dfb14be42d9"},"headline":"MACH Architecture in Practice","datePublished":"2024-07-10T14:00:00+00:00","dateModified":"2025-11-27T05:36:08+00:00","mainEntityOfPage":{"@id":"https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice"},"wordCount":4,"publisher":{"@id":"https:\/\/cloudinary.com\/blog\/#organization"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice#primaryimage"},"thumbnailUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1720041563\/mach_architecture-blog\/mach_architecture-blog.jpg?_i=AA","keywords":["Asset Management","E-commerce","MACH Alliance"],"inLanguage":"en-US","copyrightYear":"2024","copyrightHolder":{"@id":"https:\/\/cloudinary.com\/#organization"}},{"@type":"WebPage","@id":"https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice","url":"https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice","name":"MACH Architecture in Practice","isPartOf":{"@id":"https:\/\/cloudinary.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice#primaryimage"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice#primaryimage"},"thumbnailUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1720041563\/mach_architecture-blog\/mach_architecture-blog.jpg?_i=AA","datePublished":"2024-07-10T14:00:00+00:00","dateModified":"2025-11-27T05:36:08+00:00","description":"Leverage MACH principles to build a flexible, scalable e-commerce website using Next.js, commercetools, Cloudinary, and Contentful.","breadcrumb":{"@id":"https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice#primaryimage","url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1720041563\/mach_architecture-blog\/mach_architecture-blog.jpg?_i=AA","contentUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1720041563\/mach_architecture-blog\/mach_architecture-blog.jpg?_i=AA","width":2000,"height":1100},{"@type":"BreadcrumbList","@id":"https:\/\/cloudinary.com\/blog\/mach-architecture-in-practice#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cloudinary.com\/blog\/"},{"@type":"ListItem","position":2,"name":"MACH Architecture in Practice"}]},{"@type":"WebSite","@id":"https:\/\/cloudinary.com\/blog\/#website","url":"https:\/\/cloudinary.com\/blog\/","name":"Cloudinary Blog","description":"","publisher":{"@id":"https:\/\/cloudinary.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cloudinary.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/cloudinary.com\/blog\/#organization","name":"Cloudinary Blog","url":"https:\/\/cloudinary.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA","contentUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA","width":312,"height":60,"caption":"Cloudinary Blog"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/0d5ad601e4c3b5be89245dfb14be42d9","name":"melindapham","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/e6f989fa97fe94be61596259d8629c3df65aec4c7da5c0000f90d810f313d4f4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e6f989fa97fe94be61596259d8629c3df65aec4c7da5c0000f90d810f313d4f4?s=96&d=mm&r=g","caption":"melindapham"}}]}},"jetpack_featured_media_url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1720041563\/mach_architecture-blog\/mach_architecture-blog.jpg?_i=AA","_links":{"self":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/34660","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/users\/87"}],"replies":[{"embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/comments?post=34660"}],"version-history":[{"count":2,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/34660\/revisions"}],"predecessor-version":[{"id":39465,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/34660\/revisions\/39465"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/media\/34662"}],"wp:attachment":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/media?parent=34660"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/categories?post=34660"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/tags?post=34660"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}