{"id":4179,"date":"2013-08-06T18:35:54","date_gmt":"2013-08-06T22:35:54","guid":{"rendered":"http:\/\/www.iri.com\/blog\/?p=4179"},"modified":"2017-11-07T10:05:59","modified_gmt":"2017-11-07T15:05:59","slug":"korea-social-security-number","status":"publish","type":"post","link":"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/","title":{"rendered":"Generating Test NID Data: Korean Social Security Numbers"},"content":{"rendered":"<p style=\"text-align: left;\" align=\"center\"><em>This article discusses the generation of computationally valid social security numbers for the purposes of testing applications specific to Korean business interests. If you are interested in <span style=\"text-decoration: underline;\">US social security number test data<\/span> generation, see <a href=\"http:\/\/www.iri.com\/blog\/test-data\/united-states-social-security-number\/\">this article<\/a>. If you are interested in <span style=\"text-decoration: underline;\">masking existing social security numbers<\/span> for data privacy law compliance, see <a href=\"http:\/\/www.iri.com\/blog\/data-transformation2\/data-privacy-with-fieldshield-masking-dates-and-other-important-data-fields\/\">this article<\/a>.<br \/>\n<\/em><\/p>\n<hr \/>\n<p style=\"text-align: left;\" align=\"center\"><span style=\"font-size: 13px; line-height: 19px; text-align: left;\">The Korean Social Security Number (KSSN) is similar to the United States Social Security Number (US SSN) in that it is used to identify a citizen in Korea. It contains 13 digits, and is in the following format:<\/span><\/p>\n<pre>BBBBBB-GRRRRSC<\/pre>\n<p>The first six characters of the KSSN comprise the recipient\u2019s date of birth, while the seventh digit specifies gender. The next four numbers signify the region where the person was born. The 12th digit is a serial number based on the region and date of birth. The final character is a calculated check character used to validate the KSSN.<\/p>\n<p>IRI has created new functions for its <a title=\"RowGen Test Data Generation Software\" href=\"http:\/\/www.iri.com\/products\/rowgen\" target=\"_blank\" rel=\"noopener\">RowGen<\/a>\u00a0test data generation software product for those who wish to create valid or invalid KSSN values, and\/or validate existing KSSN values. \u00a0Any number of records can be generated and sent to one or more output file or table targets in one or more (custom) formats, with or without other data fields. The other fields can either be randomly generated, or randomly selected from real data, to provide realism and privacy together.<\/p>\n<p><strong><br \/>\nCreating Valid KSSN Values<\/strong><\/p>\n<p>To create a computationally and structurally correct KSSN, the RowGen user can define a job script similar to this one:<\/p>\n<pre>\/INFILE=RowGen_KSSN_valid.placeholder.in\r\n   \/ALIAS=RGKSSN\r\n   \/PROCESS=RANDOM\r\n   \/INCOLLECT=1   # Number of records to produce\r\n   \/FIELD=(NATID=natid_gen_korea(\"64\/12\/26\", \"M\"), TYPE=ASCII, POSITION=1,\r\n   SEPARATOR=\"\\n\")\r\n\/REPORT\r\n\/OUTFILE=stdout\r\n   \/PROCESS=RECORD\r\n   \/FIELD=(NATID, TYPE=ASCII, POSITION=1, SEPARATOR=\"\\t\")<\/pre>\n<p>The output from this routine is:<\/p>\n<p>641226-3191835<\/p>\n<p><span style=\"font-size: 13px; line-height: 19px;\">Note:<\/span><\/p>\n<ul>\n<li><span style=\"line-height: 13px;\">FieldName is the desired name for the field.<\/span><\/li>\n<li>BirthDate is a string that is surrounded by quotation marks, that signifies the specific birth date for the desired social security number in year, month, day format.<\/li>\n<li>Gender is a string surrounded by quotation marks that consists of an M or F character to represent male or female.<\/li>\n<li>These fields are optional, but if one is not present the others must not be present.<\/li>\n<li>Without the parameters the routine will create a completely random, valid, Korean Social Security Number<\/li>\n<\/ul>\n<p><strong><br \/>\nCreating Invalid KSSN Values<\/strong><\/p>\n<p>If the user is interested in generating an <em>invalid<\/em> Korean SSN &#8212; for example, to protect people from identity fraud &#8212; then using a different control character would satisfy this need. A <a title=\"RowGen Test Data Generation Software\" href=\"http:\/\/www.iri.com\/products\/rowgen\" target=\"_blank\" rel=\"noopener\">RowGen<\/a>\u00a0job script calling this function to create a properly formatted, but computationally <em>incorrect<\/em> Korean SSN might be:<\/p>\n<pre>\/INFILE=RowGen_KSSN_valid.placeholder.in\r\n   \/ALIAS=RGKSSN\r\n   \/PROCESS=RANDOM\r\n   \/INCOLLECT=1    # Number of records to produce\r\n   \/FIELD=(NATID=natid_gen_invalid_korea(\"74\/11\/23\", \"F\"), TYPE=ASCII, POSITION=1,\r\n   SEPARATOR=\"\\n\")<\/pre>\n<p>The output from this routine is:<\/p>\n<p>741123-2384775<\/p>\n<p><strong>Validating KSSN Values<\/strong><\/p>\n<p>If the user is interested in <em>authenticating<\/em> KSSN values &#8212; such as numbers which were generated through the previous scripts or if the user has a list of numbers to validate &#8212; then the RowGen job could look like this:<\/p>\n<pre>\/INFILE=RowGen_KSSN_valid.placeholder.in\r\n   \/ALIAS=RGKSSN\r\n   \/PROCESS=RANDOM\r\n   \/INCOLLECT=1\r\n   \/FIELD=(NATID=natid_gen_korea(\"70\/02\/13\", \"F\"), TYPE=ASCII, POSITION=1, SEPARATOR=\"\\t\")\r\n   \/FIELD=(Validate=natid_validate_korea(NATID), TYPE = ASCII, POSITION = 2, SEPARATOR=\"\\t\")\r\n\/REPORT\r\n\/OUTFILE=stdout\r\n   \/PROCESS=RECORD\r\n   \/FIELD=(NATID, TYPE=ASCII, POSITION=1,SEPARATOR=\"\\n\")\r\n   \/FIELD=(Validate, TYPE=ASCII, POSITION=2,SEPARATOR=\"\\t\")<\/pre>\n<p>The output from this routine is:<\/p>\n<p>700213-2218801 Valid<\/p>\n<p>The general specification:<\/p>\n<p>\/FIELD=(FieldName=natid_validate(KoreanSSN), TYPE=ASCII, POSITION=2, SEPARATOR=&#8221;\\t&#8221;)<\/p>\n<p>assumes:<\/p>\n<ul>\n<li><span style=\"line-height: 13px;\">FieldName is the desired name for the field.<\/span><\/li>\n<li>KoreanSSN is a string that can be used from a previously generated number in the routine, a file, or a specific Korean SSN that the user is trying to test.<\/li>\n<\/ul>\n<p>If you are interested in using either of these functions in <a href=\"http:\/\/www.iri.com\/products\/rowgen\" target=\"_blank\" rel=\"noopener\">RowGen<\/a>, please contact your IRI representative.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This article discusses the generation of computationally valid social security numbers for the purposes of testing applications specific to Korean business interests. If you are interested in US social security number test data generation, see this article. If you are interested in masking existing social security numbers for data privacy law compliance, see this article.<\/p>\n<div><a class=\"btn-filled btn\" href=\"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/\" title=\"Generating Test NID Data: Korean Social Security Numbers\">Read More<\/a><\/div>\n","protected":false},"author":20,"featured_media":11882,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"footnotes":""},"categories":[29],"tags":[314,297,307,286,299],"class_list":["post-4179","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-test-data","tag-generator","tag-korean","tag-kssn","tag-number","tag-security"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v23.4 (Yoast SEO v23.4) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Generating Test NID Data: Korean Social Security Numbers - IRI<\/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.iri.com\/blog\/test-data\/korea-social-security-number\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Generating Test NID Data: Korean Social Security Numbers\" \/>\n<meta property=\"og:description\" content=\"This article discusses the generation of computationally valid social security numbers for the purposes of testing applications specific to Korean business interests. If you are interested in US social security number test data generation, see this article. If you are interested in masking existing social security numbers for data privacy law compliance, see this article.Read More\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/\" \/>\n<meta property=\"og:site_name\" content=\"IRI\" \/>\n<meta property=\"article:published_time\" content=\"2013-08-06T22:35:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-11-07T15:05:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2013\/08\/korean-passport.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"500\" \/>\n\t<meta property=\"og:image:height\" content=\"339\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Zachary McHenry\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Zachary McHenry\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/\"},\"author\":{\"name\":\"Zachary McHenry\",\"@id\":\"https:\/\/www.iri.com\/blog\/#\/schema\/person\/78eba25b0948cc80568f172c56e99745\"},\"headline\":\"Generating Test NID Data: Korean Social Security Numbers\",\"datePublished\":\"2013-08-06T22:35:54+00:00\",\"dateModified\":\"2017-11-07T15:05:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/\"},\"wordCount\":540,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.iri.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2013\/08\/korean-passport.jpg\",\"keywords\":[\"generator\",\"korean\",\"kssn\",\"number\",\"security\"],\"articleSection\":[\"Test Data\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/\",\"url\":\"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/\",\"name\":\"Generating Test NID Data: Korean Social Security Numbers - IRI\",\"isPartOf\":{\"@id\":\"https:\/\/www.iri.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2013\/08\/korean-passport.jpg\",\"datePublished\":\"2013-08-06T22:35:54+00:00\",\"dateModified\":\"2017-11-07T15:05:59+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/#primaryimage\",\"url\":\"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2013\/08\/korean-passport.jpg\",\"contentUrl\":\"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2013\/08\/korean-passport.jpg\",\"width\":500,\"height\":339,\"caption\":\"korean passport\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.iri.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Generating Test NID Data: Korean Social Security Numbers\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.iri.com\/blog\/#website\",\"url\":\"https:\/\/www.iri.com\/blog\/\",\"name\":\"IRI\",\"description\":\"Total Data Management Blog\",\"publisher\":{\"@id\":\"https:\/\/www.iri.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.iri.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.iri.com\/blog\/#organization\",\"name\":\"IRI\",\"url\":\"https:\/\/www.iri.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.iri.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2019\/02\/iri-logo-total-data-management-small-1.png\",\"contentUrl\":\"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2019\/02\/iri-logo-total-data-management-small-1.png\",\"width\":750,\"height\":206,\"caption\":\"IRI\"},\"image\":{\"@id\":\"https:\/\/www.iri.com\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.iri.com\/blog\/#\/schema\/person\/78eba25b0948cc80568f172c56e99745\",\"name\":\"Zachary McHenry\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.iri.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f783b98096dabe202c36c6ab81417f89?s=96&d=blank&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f783b98096dabe202c36c6ab81417f89?s=96&d=blank&r=g\",\"caption\":\"Zachary McHenry\"},\"sameAs\":[\"http:\/\/www.iri.com\"],\"url\":\"https:\/\/www.iri.com\/blog\/author\/zachm\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Generating Test NID Data: Korean Social Security Numbers - IRI","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.iri.com\/blog\/test-data\/korea-social-security-number\/","og_locale":"en_US","og_type":"article","og_title":"Generating Test NID Data: Korean Social Security Numbers","og_description":"This article discusses the generation of computationally valid social security numbers for the purposes of testing applications specific to Korean business interests. If you are interested in US social security number test data generation, see this article. If you are interested in masking existing social security numbers for data privacy law compliance, see this article.Read More","og_url":"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/","og_site_name":"IRI","article_published_time":"2013-08-06T22:35:54+00:00","article_modified_time":"2017-11-07T15:05:59+00:00","og_image":[{"width":500,"height":339,"url":"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2013\/08\/korean-passport.jpg","type":"image\/jpeg"}],"author":"Zachary McHenry","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Zachary McHenry","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/#article","isPartOf":{"@id":"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/"},"author":{"name":"Zachary McHenry","@id":"https:\/\/www.iri.com\/blog\/#\/schema\/person\/78eba25b0948cc80568f172c56e99745"},"headline":"Generating Test NID Data: Korean Social Security Numbers","datePublished":"2013-08-06T22:35:54+00:00","dateModified":"2017-11-07T15:05:59+00:00","mainEntityOfPage":{"@id":"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/"},"wordCount":540,"commentCount":0,"publisher":{"@id":"https:\/\/www.iri.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/#primaryimage"},"thumbnailUrl":"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2013\/08\/korean-passport.jpg","keywords":["generator","korean","kssn","number","security"],"articleSection":["Test Data"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/","url":"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/","name":"Generating Test NID Data: Korean Social Security Numbers - IRI","isPartOf":{"@id":"https:\/\/www.iri.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/#primaryimage"},"image":{"@id":"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/#primaryimage"},"thumbnailUrl":"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2013\/08\/korean-passport.jpg","datePublished":"2013-08-06T22:35:54+00:00","dateModified":"2017-11-07T15:05:59+00:00","breadcrumb":{"@id":"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/#primaryimage","url":"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2013\/08\/korean-passport.jpg","contentUrl":"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2013\/08\/korean-passport.jpg","width":500,"height":339,"caption":"korean passport"},{"@type":"BreadcrumbList","@id":"https:\/\/www.iri.com\/blog\/test-data\/korea-social-security-number\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.iri.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Generating Test NID Data: Korean Social Security Numbers"}]},{"@type":"WebSite","@id":"https:\/\/www.iri.com\/blog\/#website","url":"https:\/\/www.iri.com\/blog\/","name":"IRI","description":"Total Data Management Blog","publisher":{"@id":"https:\/\/www.iri.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.iri.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.iri.com\/blog\/#organization","name":"IRI","url":"https:\/\/www.iri.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.iri.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2019\/02\/iri-logo-total-data-management-small-1.png","contentUrl":"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2019\/02\/iri-logo-total-data-management-small-1.png","width":750,"height":206,"caption":"IRI"},"image":{"@id":"https:\/\/www.iri.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.iri.com\/blog\/#\/schema\/person\/78eba25b0948cc80568f172c56e99745","name":"Zachary McHenry","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.iri.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f783b98096dabe202c36c6ab81417f89?s=96&d=blank&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f783b98096dabe202c36c6ab81417f89?s=96&d=blank&r=g","caption":"Zachary McHenry"},"sameAs":["http:\/\/www.iri.com"],"url":"https:\/\/www.iri.com\/blog\/author\/zachm\/"}]}},"jetpack_featured_media_url":"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2013\/08\/korean-passport.jpg","_links":{"self":[{"href":"https:\/\/www.iri.com\/blog\/wp-json\/wp\/v2\/posts\/4179"}],"collection":[{"href":"https:\/\/www.iri.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.iri.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.iri.com\/blog\/wp-json\/wp\/v2\/users\/20"}],"replies":[{"embeddable":true,"href":"https:\/\/www.iri.com\/blog\/wp-json\/wp\/v2\/comments?post=4179"}],"version-history":[{"count":26,"href":"https:\/\/www.iri.com\/blog\/wp-json\/wp\/v2\/posts\/4179\/revisions"}],"predecessor-version":[{"id":11883,"href":"https:\/\/www.iri.com\/blog\/wp-json\/wp\/v2\/posts\/4179\/revisions\/11883"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.iri.com\/blog\/wp-json\/wp\/v2\/media\/11882"}],"wp:attachment":[{"href":"https:\/\/www.iri.com\/blog\/wp-json\/wp\/v2\/media?parent=4179"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.iri.com\/blog\/wp-json\/wp\/v2\/categories?post=4179"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.iri.com\/blog\/wp-json\/wp\/v2\/tags?post=4179"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}