{"id":23413,"date":"2015-09-08T00:59:55","date_gmt":"2015-09-07T19:29:55","guid":{"rendered":"http:\/\/www.tothenew.com\/blog\/?p=23413"},"modified":"2015-09-17T14:45:06","modified_gmt":"2015-09-17T09:15:06","slug":"talend-passing-values-from-parent-job-to-child-job","status":"publish","type":"post","link":"https:\/\/www.tothenew.com\/blog\/talend-passing-values-from-parent-job-to-child-job\/","title":{"rendered":"Talend : Passing values from Parent Job to Child Job"},"content":{"rendered":"<p>In the previous <a href=\"http:\/\/www.tothenew.com\/blog\/content-migration-using-talend\/\">post<\/a>, I discussed automating content migration process using Talend. As the power of Talend lies with creating meaningful jobs, it solves a particular business problem. More often than not, one job has to talk to another job.<\/p>\n<p><strong>Use case:<\/strong><\/p>\n<p>While working on a migration project, I had a use case where I wanted to pass a value from a Parent Job to a Child Job.<\/p>\n<p><strong>Problem:<\/strong><\/p>\n<p><code>globalMap<\/code>\u00a0is a useful way to pass values, but it can only be used to pass the values within same Job. For Instance, If I have a <code>Job A<\/code> like\u00a0below:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-26349 aligncenter\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/09\/job11.png\" alt=\"job1\" width=\"399\" height=\"191\" \/><\/p>\n<p>where <code>tJava_1<\/code> is setting a key in <code>globalMap<\/code>,<\/p>\n<p>[java]globalMap.put(&quot;testVal&quot;,&quot;Test Value 1&quot;);[\/java]<\/p>\n<p>and <code>tJava_2<\/code>\u00a0is trying to retrieve its value.<\/p>\n<p>[java]System.out.println(&quot;testVal in the same job is &quot;+(String)globalMap.get(&quot;testVal&quot;));[\/java]<\/p>\n<p>Its value can be retrieved from the components defined in the same Job but if we try to access those values outside this Job, we&#8217;ll get the null value.<\/p>\n<p><strong>Solution:<\/strong><\/p>\n<p>The problem can be resolved by utilizing the power of <em><strong>&#8220;Context Variables&#8221;<\/strong><\/em>. Create a <code>Job 2<\/code>\u00a0like as shown below and define a context variable <code><em>\"testValue\"<\/em><\/code><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-26351\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/09\/job-3.png\" alt=\"job 3\" width=\"438\" height=\"247\" \/><\/p>\n<p>Create a <code>Job B<\/code> like as shown below: \u00a0(<code>Job 2<\/code>\u00a0is a <code>tRunJob\u00a0<\/code>component which is calling the above Job)<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-26352 aligncenter\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/09\/job2.png\" alt=\"job2\" width=\"394\" height=\"181\" \/><\/p>\n<p>Here <code>tJava_1<\/code> is setting a key in <code>globalMap<\/code>,<\/p>\n<p>[java]globalMap.put(&quot;testVal&quot;,&quot;Test Value 1&quot;);[\/java]<\/p>\n<p>To access the above value in <code>Job 2<\/code>\u00a0, define this component&#8217;s properties as below. Note the &#8220;<code><em>Context Param\"<\/em><\/code> definition, this is how we can set the value in the context variable and retrieve it in the child job.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-26354 aligncenter\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/09\/final-job.png\" alt=\"final job\" width=\"450\" height=\"312\" \/><\/p>\n<p><code>tJava_1<\/code> in Child Job can simply retrieve its value :<\/p>\n<p>[java]System.out.println(&quot;testVal in the another job is &quot;+context.testValue);[\/java]<\/p>\n<p>Hope it helps !!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In the previous post, I discussed automating content migration process using Talend. As the power of Talend lies with creating meaningful jobs, it solves a particular business problem. More often than not, one job has to talk to another job. Use case: While working on a migration project, I had a use case where I [&hellip;]<\/p>\n","protected":false},"author":110,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":55,"footnotes":""},"categories":[1],"tags":[2007,2339,2337,2338,2340,2008],"class_list":["post-23413","post","type-post","status-publish","format-standard","hentry","category-technology","tag-content-migration","tag-context","tag-data-migration","tag-globalmap","tag-passing-values-from-parent-to-child-job","tag-talend"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"In the previous post, I discussed automating content migration process using Talend. As the power of Talend lies with creating meaningful jobs, it solves a particular business problem. More often than not, one job has to talk to another job. Use case: While working on a migration project, I had a use case where I\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Geetika Chhabra\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.tothenew.com\/blog\/talend-passing-values-from-parent-job-to-child-job\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Talend : Passing values from Parent Job to Child Job | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"In the previous post, I discussed automating content migration process using Talend. As the power of Talend lies with creating meaningful jobs, it solves a particular business problem. More often than not, one job has to talk to another job. Use case: While working on a migration project, I had a use case where I\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.tothenew.com\/blog\/talend-passing-values-from-parent-job-to-child-job\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Talend : Passing values from Parent Job to Child Job | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"In the previous post, I discussed automating content migration process using Talend. As the power of Talend lies with creating meaningful jobs, it solves a particular business problem. More often than not, one job has to talk to another job. Use case: While working on a migration project, I had a use case where I\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/talend-passing-values-from-parent-job-to-child-job\\\/#article\",\"name\":\"Talend : Passing values from Parent Job to Child Job | TO THE NEW Blog\",\"headline\":\"Talend : Passing values from Parent Job to Child Job\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/geetika\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2015\\\/09\\\/job11.png\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/talend-passing-values-from-parent-job-to-child-job\\\/#articleImage\"},\"datePublished\":\"2015-09-08T00:59:55+05:30\",\"dateModified\":\"2015-09-17T14:45:06+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":1,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/talend-passing-values-from-parent-job-to-child-job\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/talend-passing-values-from-parent-job-to-child-job\\\/#webpage\"},\"articleSection\":\"Technology, Content Migration, context, Data Migration, globalMap, passing values from parent to child job, Talend\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/talend-passing-values-from-parent-job-to-child-job\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/talend-passing-values-from-parent-job-to-child-job\\\/#listItem\",\"name\":\"Talend : Passing values from Parent Job to Child Job\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/talend-passing-values-from-parent-job-to-child-job\\\/#listItem\",\"position\":3,\"name\":\"Talend : Passing values from Parent Job to Child Job\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/geetika\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/geetika\\\/\",\"name\":\"Geetika Chhabra\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/talend-passing-values-from-parent-job-to-child-job\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9d4d10ae5490b3414f10d296d1202d1ef60991ce054e15a10ede760cc241024e?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Geetika Chhabra\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/talend-passing-values-from-parent-job-to-child-job\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/talend-passing-values-from-parent-job-to-child-job\\\/\",\"name\":\"Talend : Passing values from Parent Job to Child Job | TO THE NEW Blog\",\"description\":\"In the previous post, I discussed automating content migration process using Talend. As the power of Talend lies with creating meaningful jobs, it solves a particular business problem. More often than not, one job has to talk to another job. Use case: While working on a migration project, I had a use case where I\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/talend-passing-values-from-parent-job-to-child-job\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/geetika\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/geetika\\\/#author\"},\"datePublished\":\"2015-09-08T00:59:55+05:30\",\"dateModified\":\"2015-09-17T14:45:06+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Talend : Passing values from Parent Job to Child Job | TO THE NEW Blog","description":"In the previous post, I discussed automating content migration process using Talend. As the power of Talend lies with creating meaningful jobs, it solves a particular business problem. More often than not, one job has to talk to another job. Use case: While working on a migration project, I had a use case where I","canonical_url":"https:\/\/www.tothenew.com\/blog\/talend-passing-values-from-parent-job-to-child-job\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.tothenew.com\/blog\/talend-passing-values-from-parent-job-to-child-job\/#article","name":"Talend : Passing values from Parent Job to Child Job | TO THE NEW Blog","headline":"Talend : Passing values from Parent Job to Child Job","author":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/geetika\/#author"},"publisher":{"@id":"https:\/\/www.tothenew.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2015\/09\/job11.png","@id":"https:\/\/www.tothenew.com\/blog\/talend-passing-values-from-parent-job-to-child-job\/#articleImage"},"datePublished":"2015-09-08T00:59:55+05:30","dateModified":"2015-09-17T14:45:06+05:30","inLanguage":"en-US","commentCount":1,"mainEntityOfPage":{"@id":"https:\/\/www.tothenew.com\/blog\/talend-passing-values-from-parent-job-to-child-job\/#webpage"},"isPartOf":{"@id":"https:\/\/www.tothenew.com\/blog\/talend-passing-values-from-parent-job-to-child-job\/#webpage"},"articleSection":"Technology, Content Migration, context, Data Migration, globalMap, passing values from parent to child job, Talend"},{"@type":"BreadcrumbList","@id":"https:\/\/www.tothenew.com\/blog\/talend-passing-values-from-parent-job-to-child-job\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.tothenew.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/www.tothenew.com\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/talend-passing-values-from-parent-job-to-child-job\/#listItem","name":"Talend : Passing values from Parent Job to Child Job"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/talend-passing-values-from-parent-job-to-child-job\/#listItem","position":3,"name":"Talend : Passing values from Parent Job to Child Job","previousItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/www.tothenew.com\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/www.tothenew.com\/blog\/"},{"@type":"Person","@id":"https:\/\/www.tothenew.com\/blog\/author\/geetika\/#author","url":"https:\/\/www.tothenew.com\/blog\/author\/geetika\/","name":"Geetika Chhabra","image":{"@type":"ImageObject","@id":"https:\/\/www.tothenew.com\/blog\/talend-passing-values-from-parent-job-to-child-job\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/9d4d10ae5490b3414f10d296d1202d1ef60991ce054e15a10ede760cc241024e?s=96&d=mm&r=g","width":96,"height":96,"caption":"Geetika Chhabra"}},{"@type":"WebPage","@id":"https:\/\/www.tothenew.com\/blog\/talend-passing-values-from-parent-job-to-child-job\/#webpage","url":"https:\/\/www.tothenew.com\/blog\/talend-passing-values-from-parent-job-to-child-job\/","name":"Talend : Passing values from Parent Job to Child Job | TO THE NEW Blog","description":"In the previous post, I discussed automating content migration process using Talend. As the power of Talend lies with creating meaningful jobs, it solves a particular business problem. More often than not, one job has to talk to another job. Use case: While working on a migration project, I had a use case where I","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.tothenew.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.tothenew.com\/blog\/talend-passing-values-from-parent-job-to-child-job\/#breadcrumblist"},"author":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/geetika\/#author"},"creator":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/geetika\/#author"},"datePublished":"2015-09-08T00:59:55+05:30","dateModified":"2015-09-17T14:45:06+05:30"},{"@type":"WebSite","@id":"https:\/\/www.tothenew.com\/blog\/#website","url":"https:\/\/www.tothenew.com\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.tothenew.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Talend : Passing values from Parent Job to Child Job | TO THE NEW Blog","og:description":"In the previous post, I discussed automating content migration process using Talend. As the power of Talend lies with creating meaningful jobs, it solves a particular business problem. More often than not, one job has to talk to another job. Use case: While working on a migration project, I had a use case where I","og:url":"https:\/\/www.tothenew.com\/blog\/talend-passing-values-from-parent-job-to-child-job\/","og:image":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Talend : Passing values from Parent Job to Child Job | TO THE NEW Blog","twitter:description":"In the previous post, I discussed automating content migration process using Talend. As the power of Talend lies with creating meaningful jobs, it solves a particular business problem. More often than not, one job has to talk to another job. Use case: While working on a migration project, I had a use case where I","twitter:image":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"23413","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"blog","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 17:14:26","updated":"2024-02-29 08:57:13","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.tothenew.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.tothenew.com\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tTalend : Passing values from Parent Job to Child Job\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.tothenew.com\/blog"},{"label":"Technology","link":"https:\/\/www.tothenew.com\/blog\/category\/technology\/"},{"label":"Talend : Passing values from Parent Job to Child Job","link":"https:\/\/www.tothenew.com\/blog\/talend-passing-values-from-parent-job-to-child-job\/"}],"_links":{"self":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts\/23413","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/users\/110"}],"replies":[{"embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/comments?post=23413"}],"version-history":[{"count":0,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts\/23413\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/media?parent=23413"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/categories?post=23413"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/tags?post=23413"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}