{"id":44156,"date":"2022-10-22T14:14:24","date_gmt":"2022-10-22T08:44:24","guid":{"rendered":"https:\/\/ischoolconnect.com\/blog\/?p=44156"},"modified":"2025-03-07T12:22:28","modified_gmt":"2025-03-07T06:52:28","slug":"an-overview-of-dbms-architecture","status":"publish","type":"post","link":"https:\/\/ischoolconnect.com\/blog\/an-overview-of-dbms-architecture\/","title":{"rendered":"DBMS architecture | All you need to know!"},"content":{"rendered":"\n<h2 id=\"dbms-architecture-an-overview\" class=\"wp-block-heading\"><strong>DBMS architecture | An overview<\/strong><\/h2>\n\n\n\n<p>The architecture of a database management system influences its design. A basic client\/server architecture manages many computers, database servers, web servers, and other network-connected components. It is made up of a large number of computers and a workstation that is linked together via a network. The architecture of the DBMS is determined by how users connect to the database to fulfill their requests. Databases come in wide varieties and can be viewed as multi-tiered or single-tiered. Therefore, they are divided into two types: two-tier architecture and three-tier architecture.<\/p>\n\n\n\n<div data-tf-widget=\"fMq3cNgU\" data-tf-iframe-props=\"title=How to build a strong undergraduate profile\" data-tf-medium=\"snippet\" data-tf-hidden=\"utm_source=ORGANIC_SEARCH,utm_medium=Blog,utm_campaign=an-overview-of-dbms-architecture,hubspot_utk=xxxxx,hubspot_page_name=xxxxx,hubspot_page_url=xxxxx\" style=\"width:100%;height:400px;\"><\/div><script src=\"\/\/embed.typeform.com\/next\/embed.js\"><\/script>\n\n\n\n<h2 id=\"what-does-dbms-do\" class=\"wp-block-heading\"><strong>What does DBMS do?<\/strong><\/h2>\n\n\n\n<p>The database management system manages the data; the database engine allows data to be accessed, locked, and modified; and the database schema defines the logical structure of the database. These fundamental elements contribute to concurrency, security, data integrity, and consistent data administration procedures. The DBMS supports many common database administration tasks, including change management, performance monitoring, tuning, security, and backup and recovery. Most database management systems are also in charge of automated rollbacks and restarts and logging and auditing database and application activity.<\/p>\n\n\n\n<p>The DBMS provides a centralized view of data that can be accessed and controlled by multiple users from multiple locations.<\/p>\n\n\n\n<p>A database management system (DBMS) can limit what data end users access and how they view the data by providing multiple views of a single database schema. The DBMS handles all requests, and end users and software programs are not required to understand where the data is physically located or on what type of storage medium it resides.<\/p>\n\n\n\n<p>The DBMS can provide both logical and physical data independence, shielding users and applications from having to know where data is stored or being concerned about changes to data&#8217;s physical structure. Developers will not have to modify programs simply because the database has changed if programs use the application programming interface (API) provided by the DBMS.<\/p>\n\n\n\n<h2 id=\"types-of-dbms-architecture\" class=\"wp-block-heading\"><strong>Types of DBMS architecture<\/strong><\/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\/DBMS-.jpg\" alt=\"dbms architecture\" class=\"wp-image-44162\" srcset=\"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/DBMS-.jpg 500w, https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/DBMS--300x200.jpg 300w, https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/DBMS--345x230.jpg 345w, https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/DBMS--370x247.jpg 370w, https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/DBMS--440x294.jpg 440w, https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/DBMS--170x113.jpg 170w\" sizes=\"(max-width: 500px) 100vw, 500px\" \/><figcaption>&nbsp;DBMS is used to access data securely and quickly.<br><\/figcaption><\/figure><\/div>\n\n\n<p>1- Tier Architecture<br>2- Tier Architecture<br>3- Tier Architecture<\/p>\n\n\n\n<h3 id=\"architecture-with-a-single-tier\" class=\"wp-block-heading\"><strong>Architecture with a single-tier<\/strong><\/h3>\n\n\n\n<p>In this architecture, the user is directly connected to the database management system. The user sits directly on the database and uses it as needed. Any changes made to the database by the user are direct, and no other tools are provided for end users. The application is developed using a single-tier <a href=\"https:\/\/ischoolconnect.com\/blog\/most-important-modern-architecture-styles\/\">architecture<\/a> by developers. To reduce communication time, programmers can communicate directly with the database here.<\/p>\n\n\n\n<p><strong>Advantage-<\/strong> It is quick for a single user because no communication with another system is required.<\/p>\n\n\n\n<p><strong>Disadvantage-<\/strong>Impossible to scale. In addition, the local client allows only one user to connect to the system simultaneously.<\/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\/top-countries-to-study-architecture\/\" target=\"_blank\" rel=\"noreferrer noopener\">Read more: Top countries to study architecture<\/a><\/div>\n<\/div>\n\n\n\n<h3 id=\"architecture-with-two-tiers\" class=\"wp-block-heading\"><strong>Architecture with two tiers-<\/strong><\/h3>\n\n\n\n<p>The database management system employs the same two-tier architecture as the basic client-server architecture we have seen. In this architecture, the application at the client&#8217;s end can communicate directly with the database on the server. APIs, most commonly ODBC or JDBC, are used in this interaction. The application programs and user interface are run on the client&#8217;s side. The server is in charge of transaction <a href=\"https:\/\/ischoolconnect.com\/blog\/principles-management-every-mba-aspirant-must-know-about\/\">management<\/a> and query processing.<\/p>\n\n\n\n<p><strong>Advantages-<\/strong>It is simple to maintain and modify. Communication is more rapid.<\/p>\n\n\n\n<p><strong>Disadvantages-<\/strong> The main issue with two-tier architecture is that the server cannot respond to multiple requests simultaneously, resulting in data integrity issues.<\/p>\n\n\n\n<h3 id=\"architecture-with-three-tiers\" class=\"wp-block-heading\"><strong>Architecture with three tiers<\/strong><\/h3>\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\/DBMS-1.jpg\" alt=\"dbms architecture\" class=\"wp-image-44161\" srcset=\"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/DBMS-1.jpg 500w, https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/DBMS-1-300x200.jpg 300w, https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/DBMS-1-345x230.jpg 345w, https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/DBMS-1-370x247.jpg 370w, https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/DBMS-1-440x294.jpg 440w, https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/DBMS-1-170x113.jpg 170w\" sizes=\"(max-width: 500px) 100vw, 500px\" \/><figcaption>1, 2, &amp; 3-tier architecture types are available in DBMS.<\/figcaption><\/figure><\/div>\n\n\n<p>The three-tier architecture has an additional layer between the client and the server. As a result, the client and server cannot communicate directly. The client and server applications interact, which then communicate with the database. The user knows nothing about the database besides its application, and the database knows nothing about the user besides the server application.<\/p>\n\n\n\n<p><strong>Advantages<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Increased scalability as a result of application server distribution. Individual connections between client and server are no longer required.<\/li><li>Data integrity is preserved<\/li><li>Data corruption can be avoided\/removed because there is a middle layer between the client and the server.<\/li><li>Security is enhanced<\/li><li>This model prevents the client from interacting directly with the server, limiting access to unauthorized data.<\/li><\/ul>\n\n\n\n<p><strong>Disadvantages- <\/strong>Increased implementation and communication complexity. Due to the presence of middle layers, this type of interaction becomes more difficult.<\/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>A database can store essential information and enable secure and faster data access. The right architecture is important for effective data management. Databases come in wide varieties and can be viewed as multi-tiered or single-tiered.<\/li><li>The database management system (DBMS) manages the data. The database engine helps in accessing, locking, and modifying data. The database schema defines the logical structure of the database.&nbsp;<\/li><li>The user is directly connected to the database management system in single-tier architecture. DBMS employs the same two-tier architecture as the basic client-server architecture. The three-tier architecture has an additional layer between the client and the server.<\/li><\/ul>\n\n\n\n<p>Did you find this blog informative? If so, please share your thoughts in the comments section below. <a href=\"https:\/\/ischoolconnect.com\/en\/contact-us\/\" target=\"_blank\" rel=\"noreferrer noopener\">Click here<\/a> to contact us for more information on DBMS architecture. We would be happy to assist you with your queries.<\/p>\n\n\n\n<p>Liked this blog? Read next: <a href=\"https:\/\/ischoolconnect.com\/blog\/here-are-easy-steps-to-create-your-architecture-portfolio\/\" target=\"_blank\" rel=\"noreferrer noopener\">Here are 8 easy steps to create your architecture portfolio<\/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 8 types of databases?<\/strong><\/p>\n\n\n\n<p><strong>Ans- <\/strong>Given below are 8 types of databases-<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Centralized Database<\/li><li>Distributed Database<\/li><li>Personal Database<\/li><li>End User Database<\/li><li>Commercial Database<\/li><li>NoSQL Database<\/li><li>Operational Database<\/li><li>Relational Databases<\/li><\/ul>\n\n\n\n<p><strong>Q2. Why do we use DBMS?<\/strong><\/p>\n\n\n\n<p><strong>Ans-<\/strong> Database Management Systems (DBMS) are software systems that store, retrieve, and execute data queries. A database management system (DBMS) acts as a bridge between an end-user and a database, allowing users to create, read, update, and delete data from the database.<\/p>\n\n\n\n<p><strong>Q3. Which language is used in DBMS?<\/strong><\/p>\n\n\n\n<p><strong>Ans-<\/strong> Structured Query Language (SQL) is the de facto standard programming language used by most of the world&#8217;s most popular database servers.<\/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 8 types of databases?\",\n    \"acceptedAnswer\": {\n      \"@type\": \"Answer\",\n      \"text\": \"Given below are 8 types of databases-\nCentralized Database\nDistributed Database\nPersonal Database\nEnd User Database\nCommercial Database\nNoSQL Database\nOperational Database\nRelational Databases\"\n    }\n  },{\n    \"@type\": \"Question\",\n    \"name\": \"Why do we use DBMS?\",\n    \"acceptedAnswer\": {\n      \"@type\": \"Answer\",\n      \"text\": \"Database Management Systems (DBMS) are software systems that store, retrieve, and execute data queries. A database management system (DBMS) acts as a bridge between an end-user and a database, allowing users to create, read, update, and delete data from the database.\"\n    }\n  },{\n    \"@type\": \"Question\",\n    \"name\": \"Which language is used in DBMS?\",\n    \"acceptedAnswer\": {\n      \"@type\": \"Answer\",\n      \"text\": \"Structured Query Language (SQL) is the de facto standard programming language used by most of the world's most popular database servers.\"\n    }\n  }]\n}\n<\/script>\n","protected":false},"excerpt":{"rendered":"<p>DBMS architecture | An overview The architecture of a database management system influences its design. A basic client\/server architecture manages many computers, database servers, web servers, and other network-connected components. It is made up of a large number of computers and a workstation that is linked together via a network. The architecture of the DBMS [&hellip;]<\/p>\n","protected":false},"author":69,"featured_media":44176,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_lmt_disableupdate":"","_lmt_disable":"","footnotes":""},"categories":[1411],"tags":[2524],"class_list":["post-44156","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-academics","tag-dbms-architecture"],"better_featured_image":{"id":44176,"alt_text":"An overview of DBMS architecture","caption":"An overview of DBMS architecture","description":"An overview of DBMS architecture","media_type":"image","media_details":{"width":600,"height":400,"file":"2022\/10\/isc10.10-1.png","filesize":214083,"sizes":{"medium":{"file":"isc10.10-1-300x200.png","width":300,"height":200,"mime-type":"image\/png","filesize":60465,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-300x200.png"},"thumbnail":{"file":"isc10.10-1-150x150.png","width":150,"height":150,"mime-type":"image\/png","filesize":28706,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-150x150.png"},"pk-small":{"file":"isc10.10-1-80x80.png","width":80,"height":80,"mime-type":"image\/png","filesize":10254,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-80x80.png"},"pk-thumbnail":{"file":"isc10.10-1-300x225.png","width":300,"height":225,"mime-type":"image\/png","filesize":71400,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-300x225.png"},"minimag_345_308":{"file":"isc10.10-1-345x308.png","width":345,"height":308,"mime-type":"image\/png","filesize":102803,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-345x308.png"},"minimag_100_80":{"file":"isc10.10-1-100x80.png","width":100,"height":80,"mime-type":"image\/png","filesize":12453,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-100x80.png"},"minimag_345_230":{"file":"isc10.10-1-345x230.png","width":345,"height":230,"mime-type":"image\/png","filesize":76411,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-345x230.png"},"minimag_170_170":{"file":"isc10.10-1-170x170.png","width":170,"height":170,"mime-type":"image\/png","filesize":35290,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-170x170.png"},"minimag_370_247":{"file":"isc10.10-1-370x247.png","width":370,"height":247,"mime-type":"image\/png","filesize":85890,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-370x247.png"},"minimag_270_220":{"file":"isc10.10-1-270x220.png","width":270,"height":220,"mime-type":"image\/png","filesize":64509,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-270x220.png"},"minimag_440_293":{"file":"isc10.10-1-440x293.png","width":440,"height":293,"mime-type":"image\/png","filesize":113086,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-440x293.png"},"minimag_351_247":{"file":"isc10.10-1-351x247.png","width":351,"height":247,"mime-type":"image\/png","filesize":85524,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-351x247.png"},"minimag_570_380":{"file":"isc10.10-1-570x380.png","width":570,"height":380,"mime-type":"image\/png","filesize":172775,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-570x380.png"},"minimag_501_375":{"file":"isc10.10-1-501x375.png","width":501,"height":375,"mime-type":"image\/png","filesize":164123,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-501x375.png"},"minimag_395_499":{"file":"isc10.10-1-395x400.png","width":395,"height":400,"mime-type":"image\/png","filesize":153008,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-395x400.png"},"minimag_477_500":{"file":"isc10.10-1-477x400.png","width":477,"height":400,"mime-type":"image\/png","filesize":183475,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-477x400.png"},"minimag_370_493":{"file":"isc10.10-1-370x400.png","width":370,"height":400,"mime-type":"image\/png","filesize":145023,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-370x400.png"},"minimag_370_370":{"file":"isc10.10-1-370x370.png","width":370,"height":370,"mime-type":"image\/png","filesize":123850,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-370x370.png"},"minimag_370_555":{"file":"isc10.10-1-370x400.png","width":370,"height":400,"mime-type":"image\/png","filesize":145023,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-370x400.png"},"minimag_370_399":{"file":"isc10.10-1-370x399.png","width":370,"height":399,"mime-type":"image\/png","filesize":130532,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-370x399.png"},"minimag_370_494":{"file":"isc10.10-1-370x400.png","width":370,"height":400,"mime-type":"image\/png","filesize":145023,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-370x400.png"},"minimag_370_241":{"file":"isc10.10-1-370x241.png","width":370,"height":241,"mime-type":"image\/png","filesize":85195,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-370x241.png"},"minimag_440_660":{"file":"isc10.10-1-440x400.png","width":440,"height":400,"mime-type":"image\/png","filesize":170516,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-440x400.png"},"minimag_440_440":{"file":"isc10.10-1-440x400.png","width":440,"height":400,"mime-type":"image\/png","filesize":170516,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-440x400.png"},"minimag_440_589":{"file":"isc10.10-1-440x400.png","width":440,"height":400,"mime-type":"image\/png","filesize":170516,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-440x400.png"},"minimag_440_580":{"file":"isc10.10-1-440x400.png","width":440,"height":400,"mime-type":"image\/png","filesize":170516,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-440x400.png"},"minimag_440_294":{"file":"isc10.10-1-440x294.png","width":440,"height":294,"mime-type":"image\/png","filesize":113422,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-440x294.png"},"minimag_370_479":{"file":"isc10.10-1-370x400.png","width":370,"height":400,"mime-type":"image\/png","filesize":145023,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-370x400.png"},"minimag_396_248":{"file":"isc10.10-1-396x248.png","width":396,"height":248,"mime-type":"image\/png","filesize":94922,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-396x248.png"},"minimag_1170_250":{"file":"isc10.10-1-600x250.png","width":600,"height":250,"mime-type":"image\/png","filesize":171787,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-600x250.png"},"minimag_170_113":{"file":"isc10.10-1-170x113.png","width":170,"height":113,"mime-type":"image\/png","filesize":24360,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1-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":44156,"source_url":"https:\/\/ischoolconnect.com\/blog\/wp-content\/uploads\/2022\/10\/isc10.10-1.png"},"acf":[],"modified_by":"Aastha","_links":{"self":[{"href":"https:\/\/ischoolconnect.com\/blog\/wp-json\/wp\/v2\/posts\/44156"}],"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=44156"}],"version-history":[{"count":24,"href":"https:\/\/ischoolconnect.com\/blog\/wp-json\/wp\/v2\/posts\/44156\/revisions"}],"predecessor-version":[{"id":100606,"href":"https:\/\/ischoolconnect.com\/blog\/wp-json\/wp\/v2\/posts\/44156\/revisions\/100606"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ischoolconnect.com\/blog\/wp-json\/wp\/v2\/media\/44176"}],"wp:attachment":[{"href":"https:\/\/ischoolconnect.com\/blog\/wp-json\/wp\/v2\/media?parent=44156"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ischoolconnect.com\/blog\/wp-json\/wp\/v2\/categories?post=44156"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ischoolconnect.com\/blog\/wp-json\/wp\/v2\/tags?post=44156"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}