{"id":108827,"date":"2026-05-05T16:15:59","date_gmt":"2026-05-05T10:45:59","guid":{"rendered":"https:\/\/www.guvi.in\/blog\/?p=108827"},"modified":"2026-05-05T16:16:01","modified_gmt":"2026-05-05T10:46:01","slug":"candidate-key-in-dbms","status":"publish","type":"post","link":"https:\/\/www.guvi.in\/blog\/candidate-key-in-dbms\/","title":{"rendered":"Candidate Key in DBMS: A Complete Guide"},"content":{"rendered":"\n<p>Imagine you walk into a library and ask for a book. The librarian can find it using the book title, the ISBN number, or the barcode on the back cover. Each of these works on its own to identify exactly one book. No two books share the same ISBN. No two books have the same barcode. These are like candidate keys in a database.<\/p>\n\n\n\n<p>In database management systems, identifying records correctly is one of the most important jobs. If you cannot uniquely identify a row in a table, your entire database becomes unreliable. Candidate keys solve this problem by giving you reliable, unique ways to find any record.<\/p>\n\n\n\n<p>In this guide, you will learn what candidate key in dbms are, how they work, how they differ from other types of keys, and how to identify them in real database scenarios.<\/p>\n\n\n\n<p><strong>Quick TL;DR Summary<\/strong><\/p>\n\n\n\n<ol>\n<li>This guide explains what a candidate key is in DBMS and why it matters for database design.<br><\/li>\n\n\n\n<li>You will learn the properties that every candidate key must satisfy to qualify as one.<br><\/li>\n\n\n\n<li>The guide covers real-world examples that show candidate keys in action across different types of tables.<br><\/li>\n\n\n\n<li>You will understand how candidate keys relate to primary keys, super keys, and alternate keys.<br><\/li>\n\n\n\n<li>Step-by-step examples help you identify candidate keys in any table you are working with.<br><\/li>\n\n\n\n<li>You will also learn common mistakes people make when choosing candidate keys and how to avoid them.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">What Is a Candidate Key in DBMS?<\/h2>\n\n\n\n<p>A candidate key is a column, or a group of columns, in a database table that can uniquely identify every row in that table. The word &#8220;candidate&#8221; means it is eligible or qualified to be chosen as the primary key.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>The Two Rules Every Candidate Key Must Follow<\/strong><\/h2>\n\n\n\n<p>Think of it like a job interview. Several candidates apply for one position. Each candidate is qualified. Only one gets selected for the role. In the same way, a table can have several candidate keys, but only one of them gets selected as the primary key.<\/p>\n\n\n\n<p>Every candidate key must follow two strict rules without any exceptions.<\/p>\n\n\n\n<ol>\n<li><strong>Uniqueness:&nbsp;<\/strong><\/li>\n<\/ol>\n\n\n\n<p>No two rows in the table can have the same value for that key. If two students share the same roll number, that column cannot be a candidate key.<\/p>\n\n\n\n<ol start=\"2\">\n<li><strong>Irreducibility (also called minimality):&nbsp;<\/strong><\/li>\n<\/ol>\n\n\n\n<p>You cannot remove any column from the key and still maintain uniqueness. If a combination of two columns works as a unique identifier, but one column alone also works, then the two-column version is not a candidate key. The single column version is.<\/p>\n\n\n\n<p><strong>Read More: <\/strong><a href=\"https:\/\/www.guvi.in\/hub\/dbms-and-sql-tutorial\/types-of-database-keys\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Introduction to Database Keys<\/strong><\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Understanding Uniqueness and Minimality With an Example<\/strong><\/h2>\n\n\n\n<p>Look at this simple student table:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Student_ID<\/strong><\/td><td><strong>Email<\/strong><\/td><td><strong>Name<\/strong><\/td><td><strong>Phone<\/strong><\/td><\/tr><tr><td>101<\/td><td>alice@mail.com<\/td><td>Alice<\/td><td>9876543210<\/td><\/tr><tr><td>102<\/td><td>bob@mail.com<\/td><td>Bob<\/td><td>9876543211<\/td><\/tr><tr><td>103<\/td><td>carol@mail.com<\/td><td>Carol<\/td><td>9876543212<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul>\n<li>In this table, Student_ID is unique for every row. No two students share the same ID. So it qualifies for uniqueness.<br><\/li>\n\n\n\n<li>Can you remove any column from Student_ID to still keep uniqueness? No, because it is just one column. So it also satisfies minimality.<br><\/li>\n\n\n\n<li>Email is also unique for every row. No two students share the same email. It also satisfies minimality since it is a single column.<br><\/li>\n\n\n\n<li>Phone is unique here too, assuming each student registers with a different number.<br><\/li>\n\n\n\n<li>So this table has three candidate keys: Student_ID, Email, and Phone.<br><\/li>\n\n\n\n<li>Now, what about the combination of Student_ID and Email together? That combination is unique, but it is not minimal. Student_ID alone is already enough. So the combination does not qualify as a candidate key. It is a super key, not a candidate key.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Candidate Key vs Super Key<\/strong><\/h2>\n\n\n\n<p>A super key is any set of columns that can uniquely identify a row. A candidate key is a super key with no extra columns in it. Every candidate key is a super key. But not every super key is a candidate key.<\/p>\n\n\n\n<p>Using the student example above, these are all super keys: Student_ID, Email, Phone, (Student_ID + Email), (Student_ID + Phone), (Email + Phone), and (Student_ID + Email + Phone).<\/p>\n\n\n\n<p>But the candidate keys are only: Student_ID, Email, and Phone. The combinations are super keys but not candidate keys because they are not minimal.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Candidate Key vs Primary Key<\/strong><\/h2>\n\n\n\n<p>The primary key is the one candidate key that the database designer chooses to be the main identifier for a table. There can only be one primary key per table, but there can be multiple candidate keys.<\/p>\n\n\n\n<p>If a table has Student_ID, Email, and Phone as candidate keys, the designer picks one, say Student_ID, as the primary key. The other two, Email and Phone, do not disappear. They become alternate keys.<\/p>\n\n\n\n<p>The primary key also has one additional rule beyond being a candidate key. It cannot contain null values. A candidate key theoretically allows null in some database systems, but a primary key never allows null.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Candidate Key vs Alternate Key<\/strong><\/h2>\n\n\n\n<p>An alternate key is simply a candidate key that was not selected as the primary key. Nothing else changes about it. It is still unique, still minimal, and still a valid way to identify a row. It just was not chosen.<\/p>\n\n\n\n<p>So once you pick Student_ID as the primary key, Email and Phone become alternate keys. They continue to exist and can be used in queries. They just do not carry the &#8220;primary&#8221; label.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How to Identify Candidate Keys in Any Table<\/strong><\/h2>\n\n\n\n<p><strong>[<\/strong><strong>In-article image 5: <\/strong><strong>The infographic should depict the heading title. Have an illustration depicting the below 5 steps as creative icons representing them]<\/strong><\/p>\n\n\n\n<p>Follow these steps whenever you need to find candidate keys in a table.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 1: List all the columns.&nbsp;<\/strong><\/h3>\n\n\n\n<p>Write down every column in the table and think about what each one represents in the real world.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 2: Check each column for uniqueness.&nbsp;<\/strong><\/h3>\n\n\n\n<p>Ask yourself whether any two rows could ever have the same value in this column. If yes, it cannot be a candidate key on its own.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 3: Check combinations.&nbsp;<\/strong><\/h3>\n\n\n\n<p>If no single column is unique on its own, start combining two columns and check if the combination is unique.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 4: Apply minimality.&nbsp;<\/strong><\/h3>\n\n\n\n<p>For every combination you find that is unique, check if you can remove any column and still keep uniqueness. If yes, remove it. Keep trimming until the combination is as small as possible.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 5: Collect all minimal unique sets.<\/strong>&nbsp;<\/h3>\n\n\n\n<p>Every minimal unique set is a candidate key.<\/p>\n\n\n\n<div style=\"background-color: #099f4e; border: 3px solid #110053; border-radius: 12px; padding: 18px 22px; color: #FFFFFF; font-size: 18px; font-family: Montserrat, Helvetica, sans-serif; line-height: 1.6; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); max-width: 750px;\">\n  <strong style=\"font-size: 22px; color: #FFFFFF;\">\ud83d\udca1 Did You Know?<\/strong> \n  <br \/><br \/> \n  The concept of <strong style=\"color: #FFFFFF;\">candidate keys<\/strong> was first formally introduced by <strong style=\"color: #FFFFFF;\">Edgar F. Codd<\/strong> in <strong style=\"color: #FFFFFF;\">1970<\/strong> through his paper <strong style=\"color: #FFFFFF;\">\u201cA Relational Model of Data for Large Shared Data Banks\u201d<\/strong>.\n  <br \/><br \/>\n  This work laid the foundation for <strong style=\"color: #FFFFFF;\">primary keys<\/strong>, <strong style=\"color: #FFFFFF;\">candidate keys<\/strong>, and <strong style=\"color: #FFFFFF;\">database normalization<\/strong>. Nearly every modern database system\u2014from <strong style=\"color: #FFFFFF;\">MySQL<\/strong> to <strong style=\"color: #FFFFFF;\">PostgreSQL<\/strong> to <strong style=\"color: #FFFFFF;\">Oracle<\/strong>\u2014still follows principles defined over <strong style=\"color: #FFFFFF;\">50 years ago<\/strong>.\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Real-World Example<\/strong><\/h2>\n\n\n\n<ol>\n<li><strong>Employee Table:<\/strong><\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Emp_ID<\/strong><\/td><td><strong>Aadhar_No<\/strong><\/td><td><strong>Email<\/strong><\/td><td><strong>Department<\/strong><\/td><td><strong>Name<\/strong><\/td><\/tr><tr><td>E001<\/td><td>1234-5678-9012<\/td><td>raj@company.com<\/td><td>HR<\/td><td>Raj<\/td><\/tr><tr><td>E002<\/td><td>2345-6789-0123<\/td><td>priya@company.com<\/td><td>IT<\/td><td>Priya<\/td><\/tr><tr><td>E003<\/td><td>3456-7890-1234<\/td><td>arjun@company.com<\/td><td>Finance<\/td><td>Arjun<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Here, Emp_ID is unique for every employee. Aadhar_No is a government-issued number, unique to every individual. Email is also unique per employee.<\/p>\n\n\n\n<p>Name and Department can repeat across rows, so they cannot be candidate keys.<\/p>\n\n\n\n<p>The candidate keys here are: Emp_ID, Aadhar_No, and Email.<\/p>\n\n\n\n<p>Combinations like (Emp_ID + Aadhar_No) are super keys but not candidate keys because Emp_ID alone already works.<\/p>\n\n\n\n<ol start=\"2\">\n<li><strong>Order Table<\/strong><\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Order_ID<\/strong><\/td><td><strong>Product_ID<\/strong><\/td><td><strong>Customer_ID<\/strong><\/td><td><strong>Quantity<\/strong><\/td><td><strong>Date<\/strong><\/td><\/tr><tr><td>O001<\/td><td>P01<\/td><td>C001<\/td><td>2<\/td><td>2024-01-01<\/td><\/tr><tr><td>O001<\/td><td>P02<\/td><td>C001<\/td><td>1<\/td><td>2024-01-01<\/td><\/tr><tr><td>O002<\/td><td>P01<\/td><td>C002<\/td><td>3<\/td><td>2024-01-02<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>In this table, Order_ID alone is not unique. The same order O001 appears in two rows because a single order can contain multiple products.<\/p>\n\n\n\n<p>Product_ID alone is also not unique. P01 appears in two rows.<\/p>\n\n\n\n<p>But the combination of Order_ID and Product_ID is unique. No two rows share the same combination. And you cannot remove either column from this combination because neither alone gives you uniqueness.<\/p>\n\n\n\n<p>So the candidate key here is: (Order_ID, Product_ID). This is called a composite candidate key.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Composite Candidate Keys<\/strong><\/h2>\n\n\n\n<p>When a single column cannot uniquely identify a row, you need two or more columns together. This is called a composite key. When that composite key is also minimal, it becomes a composite candidate key.<\/p>\n\n\n\n<p>Composite candidate keys are very common in junction tables, which are tables that connect two other tables together. For example, a table recording which students are enrolled in which courses might have columns like Student_ID and Course_ID. Neither alone is unique, but together they form the composite candidate key.<\/p>\n\n\n\n<div style=\"background-color: #099f4e; border: 3px solid #110053; border-radius: 12px; padding: 18px 22px; color: #FFFFFF; font-size: 18px; font-family: Montserrat, Helvetica, sans-serif; line-height: 1.6; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); max-width: 750px;\">\n  <strong style=\"font-size: 22px; color: #FFFFFF;\">\ud83d\udca1 Did You Know?<\/strong> \n  <br \/><br \/> \n  A table can technically have <strong style=\"color: #FFFFFF;\">only one candidate key<\/strong>, which automatically becomes the <strong style=\"color: #FFFFFF;\">primary key<\/strong> with no alternatives.\n  <br \/><br \/>\n  However, in well-designed real-world databases, most tables include <strong style=\"color: #FFFFFF;\">multiple candidate keys<\/strong>. For example, a <strong style=\"color: #FFFFFF;\">users table<\/strong> often has a <strong style=\"color: #FFFFFF;\">user ID<\/strong>, <strong style=\"color: #FFFFFF;\">email address<\/strong>, and <strong style=\"color: #FFFFFF;\">phone number<\/strong>\u2014all of which can uniquely identify a record.\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Properties of Candidate Keys Summarized<\/strong><\/h2>\n\n\n\n<ol>\n<li>A candidate key must be unique across all rows in the table at all times, not just at one point in time.<br><\/li>\n\n\n\n<li>It must be irreducible, meaning no proper subset of it can also serve as a unique identifier.<br><\/li>\n\n\n\n<li>A table must have at least one candidate key. If no column or combination of columns is unique, your table design has a problem.<br><\/li>\n\n\n\n<li>A table can have multiple candidate keys. There is no upper limit in theory.<br><\/li>\n\n\n\n<li>One candidate key becomes the primary key. The rest become alternate keys.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Common Mistakes to Avoid<\/strong><\/h2>\n\n\n\n<ol>\n<li><strong>Assuming current uniqueness means permanent uniqueness.&nbsp;<\/strong><\/li>\n<\/ol>\n\n\n\n<p>Just because a column has no duplicates right now does not make it a candidate key. Names might be unique today, but two people with the same name might join the organization next year. You need to think about what the column represents, not just what it contains at the moment.<\/p>\n\n\n\n<ol start=\"2\">\n<li><strong>Forgetting minimality.&nbsp;<\/strong><\/li>\n<\/ol>\n\n\n\n<p>Many beginners identify unique combinations but forget to check if they are minimal. Always try removing columns from your combination and see if it still works.<\/p>\n\n\n\n<ol start=\"3\">\n<li><strong>Using null-prone columns as candidate keys.&nbsp;<\/strong><\/li>\n<\/ol>\n\n\n\n<p>If a column might not always have a value, it is a risky choice. A candidate key should ideally be not null for every row.<\/p>\n\n\n\n<ol start=\"4\">\n<li><strong>Confusing super keys with candidate keys.&nbsp;<\/strong><\/li>\n<\/ol>\n\n\n\n<p>Every candidate key is a super key, but not every super key is a candidate key. The difference is minimality.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Why Candidate Keys Matter in Database Design<\/strong><\/h2>\n\n\n\n<p><a href=\"https:\/\/en.wikipedia.org\/wiki\/Candidate_key\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Candidate keys <\/a>are not just a theoretical concept. They have direct practical importance.<\/p>\n\n\n\n<ol>\n<li>They form the basis for choosing your primary key, which drives indexing, query performance, and referential integrity.<br><\/li>\n\n\n\n<li>They help you spot design problems early. If you cannot find even one candidate key in a table, your table probably stores data that cannot be uniquely identified, which is a serious design flaw.<br><\/li>\n\n\n\n<li>They guide <a href=\"https:\/\/www.guvi.in\/hub\/dbms-and-sql-tutorial\/introduction-to-normalization\/\" target=\"_blank\" rel=\"noreferrer noopener\">normalization<\/a>. Many <a href=\"https:\/\/www.guvi.in\/hub\/dbms-and-sql-tutorial\/first-normal-form\/\" target=\"_blank\" rel=\"noreferrer noopener\">normal forms<\/a> in database design refer to candidate keys to define rules about how data should be organized.<br><\/li>\n\n\n\n<li>They also help during data cleaning. If you know the candidate keys, you can find duplicate rows easily by looking for rows that share the same candidate key value.<\/li>\n<\/ol>\n\n\n\n<p>If you want to learn more about scanner in Java and its functionalities in the real world, then consider enrolling in HCL GUVI\u2019s<strong> <\/strong>Certified <a href=\"https:\/\/www.guvi.in\/zen-class\/data-science-course?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=candidate-key-in-dbms-a-complete-guide\"><strong>Data Science Course <\/strong><\/a>which not only gives you theoretical knowledge but also practical knowledge with the help of real-world projects.<strong>&nbsp;<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>A candidate key is one of the foundational ideas in database design. It is a minimal set of columns that can uniquely identify every row in a table. You can have more than one candidate key in a table, but only one becomes the primary key. The others become alternate keys.<\/p>\n\n\n\n<p>To find candidate keys, check each column and each combination of columns for uniqueness, then trim every unique set down to its minimal form. Whatever remains after trimming is a candidate key.<\/p>\n\n\n\n<p>Getting candidate keys right means your database can always find exactly the record it is looking for, no confusion, no duplicates, no ambiguity. That reliability is what makes a well-designed database trustworthy and efficient.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>FAQs<\/strong><\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1777527897268\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>1. Can a table have no candidate key?<\/strong>\u00a0<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>No. Every valid table must have at least one candidate key. If a table has no unique identifier at all, it violates the basic principles of relational databases. In practice, if no natural candidate key exists, designers create a surrogate key like an auto-incremented ID column.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1777527905780\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>2. Can a candidate key have null values?<\/strong>\u00a0<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Technically, some database systems allow null in columns that are part of a candidate key if the column is not the primary key. However, it is bad practice. A null value means the identifier is unknown, which defeats the purpose of using it to uniquely identify rows.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1777527914827\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>3. Is the primary key always the best candidate key?<\/strong>\u00a0<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Not necessarily. The primary key is the chosen candidate key, but the choice depends on factors like stability, simplicity, and size. A shorter, numeric, and non-changing column is usually preferred even if a longer text-based candidate key also exists.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1777527923561\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>4. Can two different candidate keys share a column?<\/strong>\u00a0<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Yes. For example, if (A, B) and (A, C) are both candidate keys in a table, column A appears in both. This is perfectly valid as long as each combination is unique and minimal on its own.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1777527932978\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>5. How are candidate keys related to indexes in a database?<\/strong>\u00a0<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>When you declare a primary key, the database automatically creates an index on it. Alternate keys can also be indexed to speed up queries that use those columns for searching. Candidate keys are therefore closely tied to query performance and database efficiency.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Imagine you walk into a library and ask for a book. The librarian can find it using the book title, the ISBN number, or the barcode on the back cover. Each of these works on its own to identify exactly one book. No two books share the same ISBN. No two books have the same [&hellip;]<\/p>\n","protected":false},"author":63,"featured_media":109215,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[325,16],"tags":[],"views":"23","authorinfo":{"name":"Vishalini Devarajan","url":"https:\/\/www.guvi.in\/blog\/author\/vishalini\/"},"thumbnailURL":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/04\/candidate-key-in-dbms-300x115.webp","jetpack_featured_media_url":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/04\/candidate-key-in-dbms-scaled.webp","_links":{"self":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/108827"}],"collection":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/users\/63"}],"replies":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/comments?post=108827"}],"version-history":[{"count":6,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/108827\/revisions"}],"predecessor-version":[{"id":109312,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/108827\/revisions\/109312"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media\/109215"}],"wp:attachment":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media?parent=108827"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/categories?post=108827"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/tags?post=108827"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}