{"id":43996,"date":"2022-10-21T11:31:19","date_gmt":"2022-10-21T06:01:19","guid":{"rendered":"https:\/\/ischoolconnect.com\/blog\/?p=43996"},"modified":"2025-03-26T02:51:36","modified_gmt":"2025-03-25T21:21:36","slug":"microservices-architecture-characteristics-uses-and-example","status":"publish","type":"post","link":"https:\/\/ischoolconnect.com\/blog\/microservices-architecture-characteristics-uses-and-example\/","title":{"rendered":"Microservices architecture | Characteristics, uses, and example"},"content":{"rendered":"\n<p>We&#8217;ve been building systems for a long time. Several technologies and patterns have emerged. Microservices is an architectural pattern that arose from the worlds of domain-driven design, continuous delivery, platform, and infrastructure. Also, automation, scalable systems, polyglot programming, and persistence. Continue reading to learn about microservices architecture.<\/p>\n\n\n\n<div data-tf-widget=\"PkJGQhN0\" data-tf-iframe-props=\"title=Study in your dream destination: Country Brochures\" data-tf-medium=\"snippet\" data-tf-hidden=\"utm_source=ORGANIC_SEARCH,utm_medium=Blog,utm_campaign=microservices-architecture-characteristics-uses-and-example,hubspot_utk=xxxxx,hubspot_page_name=xxxxx,hubspot_page_url=xxxxx\" style=\"width:100%;height:500px;\"><\/div><script src=\"\/\/embed.typeform.com\/next\/embed.js\"><\/script>\n\n\n\n<h2 id=\"what-is-micro-services-architecture\" class=\"wp-block-heading\">What is micro services architecture?<\/h2>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img decoding=\"async\" width=\"500\" height=\"333\" src=\"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/microservices.jpg\" alt=\"microservices architecture\" class=\"wp-image-44006\" srcset=\"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/microservices.jpg 500w, https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/microservices-300x200.jpg 300w, https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/microservices-345x230.jpg 345w, https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/microservices-370x247.jpg 370w, https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/microservices-440x294.jpg 440w, https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/microservices-170x113.jpg 170w\" sizes=\"(max-width: 500px) 100vw, 500px\" \/><figcaption>&nbsp;A microservice can connect to a shared database that contains all entities and their relationships.<br><\/figcaption><\/figure><\/div>\n\n\n<p>Robert C. Martin coined the phrase \u2018single responsibility principle,\u2019 which states, \u2018gather together those things that change for a similar reason, and separate those things that change for dissimilar reasons.\u2019<\/p>\n\n\n\n<p>A microservices architecture extends this approach to loosely coupled services that can be developed, deployed, and maintained independently. Each service is in charge of a specific task and can communicate with other services via simple APIs to solve a more significant and complex business problem.<\/p>\n\n\n\n<h2 id=\"microservices-architecture-characteristics\" class=\"wp-block-heading\">Microservices architecture characteristics<\/h2>\n\n\n\n<p>There is no standard model that you can see represented in every system on the basis of this architectural style. Also, there is no formal definition for the term microservices. However, most microservice systems share some characteristics. Below are the six attributes of microservices-<\/p>\n\n\n\n<h2 id=\"multiple-components\" class=\"wp-block-heading\">Multiple components<\/h2>\n\n\n\n<p>On can divide it into several component services. Why? So that each service can be deployed, tweaked, and redeployed independently without jeopardizing the application&#8217;s integrity. This way, you may only need to change one service. However, this approach has drawbacks such as expensive remote calls, coarser-grained remote APIs, and increased complexity when redistributing responsibilities.<\/p>\n\n\n\n<h2 id=\"business-approach\" class=\"wp-block-heading\">Business approach<\/h2>\n\n\n\n<p>Microservices architectures are typically organized around business capabilities and priorities. Unlike traditional monolithic development approaches, where different teams specialize in user interfaces, databases, <a href=\"https:\/\/ischoolconnect.com\/blog\/creative-technology-programs-a-fast-growing-field-of-technology\/\">technology<\/a> layers, or server-side logic, microservice architecture employs cross-functional teams. Each unit is in charge of creating specific products based on individual services that communicate via message bus.<\/p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-1 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link\" href=\"https:\/\/ischoolconnect.com\/blog\/the-fourth-industrial-revolution-a-bane-or-boon-to-society\/\" target=\"_blank\" rel=\"noreferrer noopener\">Read more: The fourth industrial revolution- a bane or boon to society.<\/a><\/div>\n<\/div>\n\n\n\n<h2 id=\"simple-routing\" class=\"wp-block-heading\">Simple routing<\/h2>\n\n\n\n<p>Microservices function similarly to traditional UNIX systems, receiving requests, processing them, and generating a response. It is contrary to how many other products, such as ESBs (Enterprise Service Buses), operate. It is where high-tech systems for message routing, choreography, and the application of business rules come into play. Microservices have intelligent endpoints that process information and apply logic and \u2018dumb pipes\u2019 through which the data flows.<\/p>\n\n\n\n<h2 id=\"decentralized\" class=\"wp-block-heading\">Decentralized<\/h2>\n\n\n\n<p>Because microservices involve a variety of technologies, traditional methods of centralized governance are ineffective. The microservices community prefers decentralized control so its developers can create tools others can use to solve similar problems.&nbsp;<\/p>\n\n\n\n<p>Microservice architecture, like decentralized governance, favors decentralized data management. Monolithic systems use a single logical database to support multiple applications. Each service in a microservice application typically manages its database.<\/p>\n\n\n\n<h2 id=\"failure-resistant\" class=\"wp-block-heading\">Failure resistant<\/h2>\n\n\n\n<p>Microservices, like a well-rounded child, are built to deal with failure. Because several different services communicate, one of them may fail (for example, if the supplier is unavailable). In these cases, the client should allow its neighboring services to continue operating while gracefully exiting.&nbsp;<\/p>\n\n\n\n<p>On the other hand, monitoring microservices can help reduce the risk of failure. This requirement, for obvious reasons, adds complexity to microservices compared to monolithic system architecture.<\/p>\n\n\n\n<h2 id=\"evolutionary\" class=\"wp-block-heading\">Evolutionary<\/h2>\n\n\n\n<p>It&#8217;s an evolutionary design ideal for evolutionary systems where you can&#8217;t predict which devices will access your application in the future. Many applications begin with a monolithic architecture, but as new requirements emerge, they can gradually revamp them to microservices that interact with an older monolithic architecture via APIs.<\/p>\n\n\n\n<h2 id=\"what-is-the-microservice-architecture-used-for\" class=\"wp-block-heading\">What is the microservice architecture used for? <\/h2>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img decoding=\"async\" width=\"500\" height=\"333\" src=\"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/microservices-1.jpg\" alt=\"microservices architecture\" class=\"wp-image-44009\" srcset=\"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/microservices-1.jpg 500w, https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/microservices-1-300x200.jpg 300w, https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/microservices-1-345x230.jpg 345w, https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/microservices-1-370x247.jpg 370w, https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/microservices-1-440x294.jpg 440w, https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/microservices-1-170x113.jpg 170w\" sizes=\"(max-width: 500px) 100vw, 500px\" \/><figcaption>&nbsp;There are numerous advantages of microservices architecture over traditional monolithic and SOA architectures. These benefits include improved performance, scalability, and code reuse.<\/figcaption><\/figure><\/div>\n\n\n<p>Microservices are typically put into use to accelerate application development. Microservices architectures built with Java are common, particularly those constructed with Spring Boot. Comparisons between service-oriented architecture and microservices are common. Both have the same goal- to break down monolithic applications into smaller components, but their approaches differ. Here are some examples of microservices architecture.<\/p>\n\n\n\n<h2 id=\"website-migration\" class=\"wp-block-heading\">Website migration<\/h2>\n\n\n\n<p>They can migrate a complex monolithic platform-hosted website to a cloud-based, container-based microservices platform.<\/p>\n\n\n\n<h2 id=\"media-content\" class=\"wp-block-heading\">Media content<\/h2>\n\n\n\n<p>Using a microservices architecture, one can store images and <a href=\"https:\/\/ischoolconnect.com\/blog\/best-video-editing-course-to-opt-for-in-2022\/\">video<\/a> assets in a scalable object storage system and services directly to the web or mobile.<\/p>\n\n\n\n<h2 id=\"transactions-and-invoices\" class=\"wp-block-heading\">Transactions and invoices<\/h2>\n\n\n\n<p>Payment processing and the order can be separated as distinct service units, allowing payments to be accepted even if invoicing is unavailable.<\/p>\n\n\n\n<h2 id=\"data-processing\" class=\"wp-block-heading\">Data processing<\/h2>\n\n\n\n<p>A microservices platform can supplement modular data processing services with cloud support.<\/p>\n\n\n\n<p>Benefits of microservice architecture<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>Easier to implement<\/td><td>Deploy in chunks to avoid interfering with other services.<\/td><\/tr><tr><td>Easier to comprehend<\/td><td>Because the function is isolated and less dependent, the code is easier to follow.<\/td><\/tr><tr><td>Reusable throughout the business<\/td><td>Distribute small services such as payment or login systems throughout the organization.<\/td><\/tr><tr><td><br>Improved defect isolation<\/td><td>When a test fails or a service goes down, isolate it as soon as possible.<\/td><\/tr><tr><td>Minimized risk from change<\/td><td>Avoid committing to specific technologies or languages; instead, change on the fly with minimal risk.<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 id=\"example-of-microservices\" class=\"wp-block-heading\">Example of microservices<\/h2>\n\n\n\n<p>Netflix has a widely used architecture that has progressed from monolithic to SOA. Every day, it receives over one billion calls to its streaming-video API from over 800 devices. Each API call results in approximately five additional calls to the backend service.<\/p>\n\n\n\n<p>Amazon has also made the switch to microservices. They receive countless calls from various applications, including those that manage the web service API and the website itself, which would have been impossible to handle with their previous, two-tiered architecture.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><a href=\"https:\/\/ischoolconnect.com\/blog\/thought-of-the-day-quotes-to-start-your-day-right\/\"><img decoding=\"async\" width=\"381\" height=\"77\" src=\"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/Thought-Of-The-Day.png\" alt=\"\" class=\"wp-image-43525\" srcset=\"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/Thought-Of-The-Day.png 381w, https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/Thought-Of-The-Day-300x61.png 300w\" sizes=\"(max-width: 381px) 100vw, 381px\" \/><\/a><\/figure><\/div>\n\n\n<h2 id=\"key-takeaways\" class=\"wp-block-heading\">Key takeaways<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li>There are six main characteristics of microservices architecture- multiple components, business approach, simple routing, decentralized, failure resistant, and evolutionary.<\/li><li>One can use it for website migration, media content, transaction and invoices, and data processing.<\/li><li>Microservice architecture is easier to implement, comprehend, and reuse in business and has minimized risk from change.<\/li><li>Netflix and Amazon are examples of microservice architecture.<\/li><\/ul>\n\n\n\n<p>Did you find this blog informative? Do let us know your thoughts and views in the comments below. <a href=\"https:\/\/ischoolconnect.com\/en\/contact-us\/\">Click here<\/a> to contact us for more information on microservices architecture. We would be happy to oblige with your queries.<\/p>\n\n\n\n<p>Liked this blog? Read next: <a href=\"https:\/\/ischoolconnect.com\/blog\/robotics-masters-in-japan-everything-you-need-to-know\/\" target=\"_blank\" rel=\"noreferrer noopener\">Robotics Master\u2019s in Japan \u2013 Everything you need to know<\/a><\/p>\n\n\n\n<h2 id=\"faqs\" class=\"wp-block-heading\">FAQs<\/h2>\n\n\n\n<p><strong>Q1. What are the three components of a microservice?<\/strong><\/p>\n\n\n\n<p><strong>Answer-<\/strong> A typical Microservice Architecture (MSA) should include the following components- Clients, Identity Providers, and API Gateway.<\/p>\n\n\n\n<p><strong>Q2. How is microservices different from API?<\/strong><\/p>\n\n\n\n<p><strong>Answer-<\/strong> Microservices is a method of developing applications that divide their functionality into modular components. APIs are components of an application that allow it to communicate with other applications. Hence, one can use APIs to enable microservices. As a result, you can make software development easier.<\/p>\n\n\n\n<p><strong>Q3. What is the best language for microservices?<\/strong><\/p>\n\n\n\n<p><strong>Answer- <\/strong>Java (41%), JavaScript (37%), and Python (25%) are the three most popular languages for microservices development.<\/p>\n\n\n\n<script type=\"application\/ld+json\">\n{\n  \"@context\": \"https:\/\/schema.org\",\n  \"@type\": \"FAQPage\",\n  \"mainEntity\": [{\n    \"@type\": \"Question\",\n    \"name\": \"What are the three components of a microservice?\",\n    \"acceptedAnswer\": {\n      \"@type\": \"Answer\",\n      \"text\": \"A typical Microservice Architecture (MSA) should include the following components- Clients, Identity Providers, and API Gateway.\"\n    }\n  },{\n    \"@type\": \"Question\",\n    \"name\": \"How is microservices different from API?\",\n    \"acceptedAnswer\": {\n      \"@type\": \"Answer\",\n      \"text\": \"Microservices is a method of developing applications that divide their functionality into modular components. APIs are components of an application that allow it to communicate with other applications. Hence, one can use APIs to enable microservices. As a result, you can make software development easier.\"\n    }\n  },{\n    \"@type\": \"Question\",\n    \"name\": \"What is the best language for microservices?\",\n    \"acceptedAnswer\": {\n      \"@type\": \"Answer\",\n      \"text\": \"Java (41%), JavaScript (37%), and Python (25%) are the three most popular languages for microservices development.\"\n    }\n  }]\n}\n<\/script>\n","protected":false},"excerpt":{"rendered":"<p>We&#8217;ve been building systems for a long time. Several technologies and patterns have emerged. Microservices is an architectural pattern that arose from the worlds of domain-driven design, continuous delivery, platform, and infrastructure. Also, automation, scalable systems, polyglot programming, and persistence. Continue reading to learn about microservices architecture. What is micro services architecture? Robert C. Martin [&hellip;]<\/p>\n","protected":false},"author":69,"featured_media":44023,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_lmt_disableupdate":"","_lmt_disable":"","footnotes":""},"categories":[1420],"tags":[2519],"class_list":["post-43996","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-others","tag-microservices-architecture"],"better_featured_image":{"id":44023,"alt_text":"Microservices architecture | Characteristics, uses, and example","caption":"Microservices architecture | Characteristics, uses, and example","description":"Microservices architecture | Characteristics, uses, and example","media_type":"image","media_details":{"width":600,"height":400,"file":"2022\/10\/isc07.10-6.png","filesize":217840,"sizes":{"medium":{"file":"isc07.10-6-300x200.png","width":300,"height":200,"mime-type":"image\/png","filesize":66667,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-300x200.png"},"thumbnail":{"file":"isc07.10-6-150x150.png","width":150,"height":150,"mime-type":"image\/png","filesize":28303,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-150x150.png"},"pk-small":{"file":"isc07.10-6-80x80.png","width":80,"height":80,"mime-type":"image\/png","filesize":10267,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-80x80.png"},"pk-thumbnail":{"file":"isc07.10-6-300x225.png","width":300,"height":225,"mime-type":"image\/png","filesize":73872,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-300x225.png"},"minimag_345_308":{"file":"isc07.10-6-345x308.png","width":345,"height":308,"mime-type":"image\/png","filesize":97403,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-345x308.png"},"minimag_100_80":{"file":"isc07.10-6-100x80.png","width":100,"height":80,"mime-type":"image\/png","filesize":13178,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-100x80.png"},"minimag_345_230":{"file":"isc07.10-6-345x230.png","width":345,"height":230,"mime-type":"image\/png","filesize":83091,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-345x230.png"},"minimag_170_170":{"file":"isc07.10-6-170x170.png","width":170,"height":170,"mime-type":"image\/png","filesize":34106,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-170x170.png"},"minimag_370_247":{"file":"isc07.10-6-370x247.png","width":370,"height":247,"mime-type":"image\/png","filesize":93291,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-370x247.png"},"minimag_270_220":{"file":"isc07.10-6-270x220.png","width":270,"height":220,"mime-type":"image\/png","filesize":65013,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-270x220.png"},"minimag_440_293":{"file":"isc07.10-6-440x293.png","width":440,"height":293,"mime-type":"image\/png","filesize":121785,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-440x293.png"},"minimag_351_247":{"file":"isc07.10-6-351x247.png","width":351,"height":247,"mime-type":"image\/png","filesize":90227,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-351x247.png"},"minimag_570_380":{"file":"isc07.10-6-570x380.png","width":570,"height":380,"mime-type":"image\/png","filesize":182275,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-570x380.png"},"minimag_501_375":{"file":"isc07.10-6-501x375.png","width":501,"height":375,"mime-type":"image\/png","filesize":164771,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-501x375.png"},"minimag_395_499":{"file":"isc07.10-6-395x400.png","width":395,"height":400,"mime-type":"image\/png","filesize":133022,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-395x400.png"},"minimag_477_500":{"file":"isc07.10-6-477x400.png","width":477,"height":400,"mime-type":"image\/png","filesize":170026,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-477x400.png"},"minimag_370_493":{"file":"isc07.10-6-370x400.png","width":370,"height":400,"mime-type":"image\/png","filesize":122771,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-370x400.png"},"minimag_370_370":{"file":"isc07.10-6-370x370.png","width":370,"height":370,"mime-type":"image\/png","filesize":112593,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-370x370.png"},"minimag_370_555":{"file":"isc07.10-6-370x400.png","width":370,"height":400,"mime-type":"image\/png","filesize":122771,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-370x400.png"},"minimag_370_399":{"file":"isc07.10-6-370x399.png","width":370,"height":399,"mime-type":"image\/png","filesize":114401,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-370x399.png"},"minimag_370_494":{"file":"isc07.10-6-370x400.png","width":370,"height":400,"mime-type":"image\/png","filesize":122771,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-370x400.png"},"minimag_370_241":{"file":"isc07.10-6-370x241.png","width":370,"height":241,"mime-type":"image\/png","filesize":91100,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-370x241.png"},"minimag_440_660":{"file":"isc07.10-6-440x400.png","width":440,"height":400,"mime-type":"image\/png","filesize":152693,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-440x400.png"},"minimag_440_440":{"file":"isc07.10-6-440x400.png","width":440,"height":400,"mime-type":"image\/png","filesize":152693,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-440x400.png"},"minimag_440_589":{"file":"isc07.10-6-440x400.png","width":440,"height":400,"mime-type":"image\/png","filesize":152693,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-440x400.png"},"minimag_440_580":{"file":"isc07.10-6-440x400.png","width":440,"height":400,"mime-type":"image\/png","filesize":152693,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-440x400.png"},"minimag_440_294":{"file":"isc07.10-6-440x294.png","width":440,"height":294,"mime-type":"image\/png","filesize":121800,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-440x294.png"},"minimag_370_479":{"file":"isc07.10-6-370x400.png","width":370,"height":400,"mime-type":"image\/png","filesize":122771,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-370x400.png"},"minimag_396_248":{"file":"isc07.10-6-396x248.png","width":396,"height":248,"mime-type":"image\/png","filesize":98111,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-396x248.png"},"minimag_1170_250":{"file":"isc07.10-6-600x250.png","width":600,"height":250,"mime-type":"image\/png","filesize":147194,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-600x250.png"},"minimag_170_113":{"file":"isc07.10-6-170x113.png","width":170,"height":113,"mime-type":"image\/png","filesize":27382,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6-170x113.png"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}},"post":43996,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc07.10-6.png"},"acf":[],"modified_by":"Aastha","_links":{"self":[{"href":"https:\/\/ischoolconnect.com\/blog\/wp-json\/wp\/v2\/posts\/43996"}],"collection":[{"href":"https:\/\/ischoolconnect.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ischoolconnect.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ischoolconnect.com\/blog\/wp-json\/wp\/v2\/users\/69"}],"replies":[{"embeddable":true,"href":"https:\/\/ischoolconnect.com\/blog\/wp-json\/wp\/v2\/comments?post=43996"}],"version-history":[{"count":30,"href":"https:\/\/ischoolconnect.com\/blog\/wp-json\/wp\/v2\/posts\/43996\/revisions"}],"predecessor-version":[{"id":100602,"href":"https:\/\/ischoolconnect.com\/blog\/wp-json\/wp\/v2\/posts\/43996\/revisions\/100602"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ischoolconnect.com\/blog\/wp-json\/wp\/v2\/media\/44023"}],"wp:attachment":[{"href":"https:\/\/ischoolconnect.com\/blog\/wp-json\/wp\/v2\/media?parent=43996"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ischoolconnect.com\/blog\/wp-json\/wp\/v2\/categories?post=43996"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ischoolconnect.com\/blog\/wp-json\/wp\/v2\/tags?post=43996"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}