{"id":6553,"date":"2021-01-21T13:26:27","date_gmt":"2021-01-21T07:56:27","guid":{"rendered":"https:\/\/www.innovationm.com\/blog\/?p=6553"},"modified":"2021-01-21T13:26:27","modified_gmt":"2021-01-21T07:56:27","slug":"database-testing","status":"publish","type":"post","link":"https:\/\/www.innovationm.com\/blog\/database-testing\/","title":{"rendered":"Database Testing"},"content":{"rendered":"<h3><b>What is Checking a Database?<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">A database is nothing but a structured data array that includes data storage and helps to manipulate data. Database checking refers to the testing of the data we have collected in the database. We need to check the data in the database and ensure that the right data set is stored in the tables of the database according to the user&#8217;s knowledge.<\/span><\/p>\n<h3><b>Need For Database testing:<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">The database is a data dump where the data is gathered in an immense quantity and stored in a standardized format. Since the DataBase Management System offers a structured way for this information to be handled, collected and stored, there are occasions when records can become obsolete, duplicated, etc. Database verification falls into the picture in such situations, which allows one to verify.<\/span> <span style=\"font-weight: 400;\">There are four data authentication types.<\/span><\/p>\n<p><span style=\"font-weight: 400;\"><strong>1. Data Mapping-<\/strong> This applies to data filtering, i.e. the same data should be stored in the database that is entered at the frontend by the user.<\/span><\/p>\n<p><span style=\"font-weight: 400;\"><strong>2. ACID Properties<\/strong>&#8211; ACID stands for Atomicity, Toughness, Separation and Consistency. Validation of all four properties helps to protect data stability, stability, and safety.<\/span><\/p>\n<p><span style=\"font-weight: 400;\"><strong>3. Data Consistency-<\/strong> If either of the CRUD (Create, Retrieve, Upgrade, and Delete) operations change the data, the current information on each and every UI should be displayed.<\/span><\/p>\n<p><span style=\"font-weight: 400;\"><strong>4. Complex database- <\/strong>It\u00a0applies to complex elements such as restrictions, stored protocols, causes, etc. Market law enforcement Thus, to verify these dynamic elements, it is the responsibility of the tester to better SQL queries.<\/span><\/p>\n<h3><b>Importance of SQL for DB testing:<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">Database testing with SQL Each second, an enormous amount of data is generated. SQL offers a standard way to tackle this sort of knowledge. The Standard Query Language (SQL) is pronounced as &#8220;S-Q-L&#8221; or occasionally as &#8220;See-Quel,&#8221; and is the traditional Relational Databases language. SQL is used for importing, checking, reviewing, deleting, changing database information.<\/span><\/p>\n<p><strong>Essentially, there are two types of SQL commands: <\/strong><\/p>\n<p><strong style=\"font-size: 1rem;\">1. DDL(Data Description Language)<\/strong><span style=\"font-size: 1rem;\"> &#8211; This refers to a series of SQL commands, including indexes, triggers, tables, and displays, that can construct and manipulate database structures. To build a database schema, DDL commands are used to describe the form and structure of the data to be contained in a database.\u00a0<\/span><\/p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Create<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Drop\u00a0<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Truncate\u00a0<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Alter<\/span><\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\"><strong>2. DML(Data Manipulation Language)<\/strong> &#8211; This applies to the database manipulation suite of SQL commands. The embedded DML is used for general programming languages.\u00a0<\/span><\/p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Insert Into\u00a0<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Update\u00a0<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Delete\u00a0<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Select<\/span><\/li>\n<\/ul>\n<h3><b>Basic Queries using SQL Commands:<\/b><\/h3>\n<p><b>1. SELECT<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The SELECT\u00a0 statement is used to select the data from the tables present in the Database. It provides data from a particular table. It&#8217;s a DML command.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">We can also use the SELECT keyword with\u00a0 DISTINCT, ORDER BY, GROUP BY, HAVING Clause and INTO.<br \/>\n<\/span><\/p>\n<pre class=\"lang:default decode:true \">SELECT TempID, TempName\r\n\r\nFROM Temp;\r\n\r\n(*) is used to select all the data from a particular table\r\n\r\nSELECT * FROM Temp;\r\n\r\nSELECT TOP 3 * FROM Temp;<\/pre>\n<p><b>2. DROP Table<\/b><\/p>\n<p><span style=\"font-weight: 400;\">It is used to drop the table i.e table will be deleted permanently from the database and also data present inside the table.<\/span><\/p>\n<pre class=\"lang:default decode:true \">DROP TABLE Temp;<\/pre>\n<p><b>3. UPDATE<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The UPDATE statement is used to update and modify the existing records present in the table. It&#8217;s a DML command.<\/span><\/p>\n<pre class=\"lang:default decode:true\">UPDATE Temp\r\n\r\nSET TempName = 'Raks', City= 'Ghaziabad'\r\n\r\nWHERE TempID = 2;<\/pre>\n<p><b>4. TRUNCATE<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The TRUNCATE statement is used to delete the data present inside the table i.e. the data inside the table will be completely lost but the table will remain there in the database.<\/span><\/p>\n<pre class=\"lang:default decode:true\">TRUNCATE Table Temp;<\/pre>\n<p><b>5. LIKE<\/b><\/p>\n<p><span style=\"font-weight: 400;\">LIKE\u00a0 is used with WHERE clause to search for a specified pattern in a column of a table.<\/span><\/p>\n<pre class=\"lang:default decode:true \">SELECT * FROM Temp\r\n\r\nWHERE TempName LIKE 'T%';<\/pre>\n<p><strong><b>6. INSERT INTO<\/b><\/strong><\/p>\n<p>The INSERT INTO statement is used to insert the new records in a particular table. It&#8217;s a DML command.<\/p>\n<pre class=\"lang:default decode:true \">INSERT INTO TableName (Column1, Column2, Column3, ...,ColumnN)\r\n\r\nVALUES (value1, value2, value3, ...);<\/pre>\n<p>&#8211;If you do not want to mention the column name, but the order of values entered should match the column data types :<\/p>\n<pre class=\"lang:default decode:true \">INSERT INTO TableName\r\n\r\nVALUES (Value1, Value2, Value3, ...);<\/pre>\n<h4><strong><b>7. ALTER TABLE<\/b><\/strong><\/h4>\n<p>ALTER is used to delete, add, modify columns of the existing table. We can also use alter with ADD and DROP to add or drop any particular column in the table. We can also use the alter with UPDATE for modifying any particular column in the table.<\/p>\n<pre class=\"lang:default decode:true \">ADD Column Gender;\r\n\r\nAlter table TEMP;\r\n\r\nADD Gender varchar (255);<\/pre>\n<p><strong><b>8. DELETE<\/b><\/strong><\/p>\n<p>This assertion is included in every particular table to delete the current records available. It&#8217;s a command from DML.<\/p>\n<pre class=\"lang:default decode:true \">DELETE From Temp Where TempName = \u2018Raks\u2019;<\/pre>\n<p><strong><b>9. ORDER BY<\/b><\/strong><\/p>\n<p>This declaration is used in order to group the results in an ascending or descending order. By default, results are in ascending order and represent the outcomes in descending order the Desc keyword should be used.<\/p>\n<pre class=\"lang:default decode:true \">SELECT From Temp Order By TempId;<\/pre>\n<p><strong><b>10. GROUP BY<\/b><\/strong><\/p>\n<p>For the aggregate functions, the GROUP BY argument is used to group the result set by one or more columns.<\/p>\n<pre class=\"lang:default decode:true \">SELECT Count (TempId), City\u00a0\u00a0\r\n\r\nFrom Temp\u00a0\u00a0\u00a0\r\n\r\nGroup By City<\/pre>\n<h3><strong><b>SQL Joins:<\/b><\/strong><\/h3>\n<p>Centred on a linked column between such tables, JOINS are used to merge rows from two or more tables. They are mainly used when a user tries to retrieve data from tables that have one-to-many or many-to-many relationships between them. There are four kinds of entries:<\/p>\n<p><strong>1. INNER Join:<\/strong> Returns all records in both tables which have corresponding values.<\/p>\n<p><strong>2. FULL Join:<\/strong> Returns all documents that match either the left or right table of the table.<\/p>\n<p><strong>3. LEFT Join:<\/strong> This returns all records from the left table and the records from the right table that satisfy the requirement.<\/p>\n<p><strong>4. RIGHT Join:<\/strong> Returns all records and information from the Right Table and the records from the left table that satisfy the requirement.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>What is Checking a Database? A database is nothing but a structured data array that includes data storage and helps to manipulate data. Database checking refers to the testing of the data we have collected in the database. We need to check the data in the database and ensure that the right data set is [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":6554,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[570],"tags":[571,14],"class_list":["post-6553","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-software-testing","tag-database-testing","tag-innovationm"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Database Testing - InnovationM - Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.innovationm.com\/blog\/database-testing\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Database Testing - InnovationM - Blog\" \/>\n<meta property=\"og:description\" content=\"What is Checking a Database? A database is nothing but a structured data array that includes data storage and helps to manipulate data. Database checking refers to the testing of the data we have collected in the database. We need to check the data in the database and ensure that the right data set is [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.innovationm.com\/blog\/database-testing\/\" \/>\n<meta property=\"og:site_name\" content=\"InnovationM - Blog\" \/>\n<meta property=\"article:published_time\" content=\"2021-01-21T07:56:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2021\/01\/Database-testing.png\" \/>\n\t<meta property=\"og:image:width\" content=\"960\" \/>\n\t<meta property=\"og:image:height\" content=\"540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"InnovationM Admin\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InnovationM Admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/database-testing\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/database-testing\\\/\"},\"author\":{\"name\":\"InnovationM Admin\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/#\\\/schema\\\/person\\\/a831bf4602d69d1fa452e3de0c8862ed\"},\"headline\":\"Database Testing\",\"datePublished\":\"2021-01-21T07:56:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/database-testing\\\/\"},\"wordCount\":851,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/database-testing\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/Database-testing.png\",\"keywords\":[\"Database Testing\",\"InnovationM\"],\"articleSection\":[\"Software Testing\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/database-testing\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/database-testing\\\/\",\"url\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/database-testing\\\/\",\"name\":\"Database Testing - InnovationM - Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/database-testing\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/database-testing\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/Database-testing.png\",\"datePublished\":\"2021-01-21T07:56:27+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/#\\\/schema\\\/person\\\/a831bf4602d69d1fa452e3de0c8862ed\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/database-testing\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/database-testing\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/database-testing\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/Database-testing.png\",\"contentUrl\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/Database-testing.png\",\"width\":960,\"height\":540},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/database-testing\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Database Testing\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/\",\"name\":\"InnovationM - Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/#\\\/schema\\\/person\\\/a831bf4602d69d1fa452e3de0c8862ed\",\"name\":\"InnovationM Admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g\",\"caption\":\"InnovationM Admin\"},\"sameAs\":[\"http:\\\/\\\/www.innovationm.com\\\/\"],\"url\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/author\\\/innovationmadmin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Database Testing - InnovationM - Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.innovationm.com\/blog\/database-testing\/","og_locale":"en_US","og_type":"article","og_title":"Database Testing - InnovationM - Blog","og_description":"What is Checking a Database? A database is nothing but a structured data array that includes data storage and helps to manipulate data. Database checking refers to the testing of the data we have collected in the database. We need to check the data in the database and ensure that the right data set is [&hellip;]","og_url":"https:\/\/www.innovationm.com\/blog\/database-testing\/","og_site_name":"InnovationM - Blog","article_published_time":"2021-01-21T07:56:27+00:00","og_image":[{"width":960,"height":540,"url":"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2021\/01\/Database-testing.png","type":"image\/png"}],"author":"InnovationM Admin","twitter_misc":{"Written by":"InnovationM Admin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.innovationm.com\/blog\/database-testing\/#article","isPartOf":{"@id":"https:\/\/www.innovationm.com\/blog\/database-testing\/"},"author":{"name":"InnovationM Admin","@id":"https:\/\/www.innovationm.com\/blog\/#\/schema\/person\/a831bf4602d69d1fa452e3de0c8862ed"},"headline":"Database Testing","datePublished":"2021-01-21T07:56:27+00:00","mainEntityOfPage":{"@id":"https:\/\/www.innovationm.com\/blog\/database-testing\/"},"wordCount":851,"commentCount":0,"image":{"@id":"https:\/\/www.innovationm.com\/blog\/database-testing\/#primaryimage"},"thumbnailUrl":"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2021\/01\/Database-testing.png","keywords":["Database Testing","InnovationM"],"articleSection":["Software Testing"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.innovationm.com\/blog\/database-testing\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.innovationm.com\/blog\/database-testing\/","url":"https:\/\/www.innovationm.com\/blog\/database-testing\/","name":"Database Testing - InnovationM - Blog","isPartOf":{"@id":"https:\/\/www.innovationm.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.innovationm.com\/blog\/database-testing\/#primaryimage"},"image":{"@id":"https:\/\/www.innovationm.com\/blog\/database-testing\/#primaryimage"},"thumbnailUrl":"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2021\/01\/Database-testing.png","datePublished":"2021-01-21T07:56:27+00:00","author":{"@id":"https:\/\/www.innovationm.com\/blog\/#\/schema\/person\/a831bf4602d69d1fa452e3de0c8862ed"},"breadcrumb":{"@id":"https:\/\/www.innovationm.com\/blog\/database-testing\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.innovationm.com\/blog\/database-testing\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.innovationm.com\/blog\/database-testing\/#primaryimage","url":"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2021\/01\/Database-testing.png","contentUrl":"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2021\/01\/Database-testing.png","width":960,"height":540},{"@type":"BreadcrumbList","@id":"https:\/\/www.innovationm.com\/blog\/database-testing\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.innovationm.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Database Testing"}]},{"@type":"WebSite","@id":"https:\/\/www.innovationm.com\/blog\/#website","url":"https:\/\/www.innovationm.com\/blog\/","name":"InnovationM - Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.innovationm.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.innovationm.com\/blog\/#\/schema\/person\/a831bf4602d69d1fa452e3de0c8862ed","name":"InnovationM Admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g","caption":"InnovationM Admin"},"sameAs":["http:\/\/www.innovationm.com\/"],"url":"https:\/\/www.innovationm.com\/blog\/author\/innovationmadmin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/posts\/6553","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/comments?post=6553"}],"version-history":[{"count":0,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/posts\/6553\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/media\/6554"}],"wp:attachment":[{"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/media?parent=6553"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/categories?post=6553"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/tags?post=6553"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}