{"id":11596,"date":"2022-09-28T00:18:54","date_gmt":"2022-09-27T18:48:54","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-merge-different-products-belong-to-each-standard-v2-duplicate\/"},"modified":"2022-09-28T00:18:54","modified_gmt":"2022-09-27T18:48:54","slug":"solved-merge-different-products-belong-to-each-standard-v2-duplicate","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-merge-different-products-belong-to-each-standard-v2-duplicate\/","title":{"rendered":"[Solved] Merge different products belong to each standard &#8211; V2 [duplicate]"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-35963900\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"35963900\" data-parentid=\"35963434\" data-score=\"1\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>This XSLT will do the thing:<\/p>\n<pre><code>&lt;xsl:stylesheet xmlns:xsl=\"http:\/\/www.w3.org\/1999\/XSL\/Transform\" xmlns:x=\"http:\/\/ws.wso2.org\/dataservice\" xmlns=\"http:\/\/ws.wso2.org\/dataservice\" exclude-result-prefixes=\"x\" version=\"1.0\"&gt;\n  &lt;xsl:output indent=\"yes\" method=\"xml\" \/&gt;\n\n  &lt;xsl:template match=\"x:Standards\"&gt;\n    &lt;Standards namespace=\"{namespace-uri()}\"&gt;\n      &lt;xsl:apply-templates select=\".\/\/x:Standard\" \/&gt;\n    &lt;\/Standards&gt;\n  &lt;\/xsl:template&gt;\n\n  &lt;xsl:template match=\"x:Standard\"&gt;\n    &lt;Standard&gt;\n      &lt;xsl:copy-of select=\"x:ProductID\" \/&gt;\n      &lt;xsl:copy-of select=\"x:Prefix\"\/&gt;\n      &lt;xsl:copy-of select=\"x:SNumber\"\/&gt;\n      &lt;RelatedProducts&gt;\n        &lt;xsl:apply-templates select=\".\/\/x:RelatedProduct\"\/&gt;     \n      &lt;\/RelatedProducts&gt;\n      &lt;xsl:copy-of select=\"x:S1\"\/&gt;\n      &lt;xsl:copy-of select=\"x:S2\"\/&gt;    \n    &lt;\/Standard&gt;\n  &lt;\/xsl:template&gt;\n\n  &lt;xsl:template match=\"x:RelatedProduct\"&gt;\n    &lt;xsl:element name=\"RelatedProduct\"&gt;\n      &lt;xsl:element name=\"RelationType\"&gt;\n        &lt;xsl:value-of select=\"name(..)\" \/&gt;\n      &lt;\/xsl:element&gt;\n      &lt;xsl:copy-of select=\"*\"\/&gt;\n    &lt;\/xsl:element&gt;\n  &lt;\/xsl:template&gt;\n&lt;\/xsl:stylesheet&gt;\n<\/code><\/pre>\n<p>Result is:<\/p>\n<pre><code>&lt;?xml version=\"1.0\"?&gt;\n&lt;Standards xmlns=\"http:\/\/ws.wso2.org\/dataservice\" namespace=\"http:\/\/ws.wso2.org\/dataservice\"&gt;\n    &lt;Standard&gt;\n        &lt;ProductID&gt;200057&lt;\/ProductID&gt;\n        &lt;Prefix&gt;ISO&lt;\/Prefix&gt;\n        &lt;SNumber&gt;1001&lt;\/SNumber&gt;\n        &lt;RelatedProducts&gt;\n            &lt;RelatedProduct&gt;\n                &lt;RelationType&gt;DraftProducts&lt;\/RelationType&gt;\n                &lt;ProductID&gt;1500163&lt;\/ProductID&gt;\n            &lt;\/RelatedProduct&gt;\n            &lt;RelatedProduct&gt;\n                &lt;RelationType&gt;ReferenceProducts&lt;\/RelationType&gt;\n                &lt;ProductID&gt;263973&lt;\/ProductID&gt;\n                &lt;RelationId&gt;708519&lt;\/RelationId&gt;\n                &lt;Designation xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\" xsi:nil=\"true\"\/&gt;\n            &lt;\/RelatedProduct&gt;\n            &lt;RelatedProduct&gt;\n                &lt;RelationType&gt;ReferenceProducts&lt;\/RelationType&gt;\n                &lt;ProductID&gt;320056&lt;\/ProductID&gt;\n                &lt;RelationId&gt;934789&lt;\/RelationId&gt;\n                &lt;Designation xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\" xsi:nil=\"true\"\/&gt;\n            &lt;\/RelatedProduct&gt;\n            &lt;RelatedProduct&gt;\n                &lt;RelationType&gt;RelatedIntProducts&lt;\/RelationType&gt;\n                &lt;ProductID xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\" xsi:nil=\"true\"\/&gt;\n                &lt;RelationId&gt;116881&lt;\/RelationId&gt;\n                &lt;Relationship&gt;Identical&lt;\/Relationship&gt;\n                &lt;Designation&gt;NEN ISO 1001&lt;\/Designation&gt;\n            &lt;\/RelatedProduct&gt;\n            &lt;RelatedProduct&gt;\n                &lt;RelationType&gt;RelatedIntProducts&lt;\/RelationType&gt;\n                &lt;ProductID&gt;208076&lt;\/ProductID&gt;\n                &lt;RelationId&gt;116886&lt;\/RelationId&gt;\n                &lt;Relationship&gt;Identical&lt;\/Relationship&gt;\n                &lt;Designation xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\" xsi:nil=\"true\"\/&gt;\n            &lt;\/RelatedProduct&gt;\n        &lt;\/RelatedProducts&gt;\n        &lt;S1&gt;1001&lt;\/S1&gt;\n        &lt;S2&gt;1986&lt;\/S2&gt;\n    &lt;\/Standard&gt;\n    &lt;Standard&gt;\n        &lt;ProductID&gt;200058&lt;\/ProductID&gt;\n        &lt;Prefix&gt;ISO&lt;\/Prefix&gt;\n        &lt;SNumber&gt;1002&lt;\/SNumber&gt;\n        &lt;RelatedProducts&gt;\n            &lt;RelatedProduct&gt;\n                &lt;RelationType&gt;DraftProducts&lt;\/RelationType&gt;\n                &lt;ProductID&gt;1500167&lt;\/ProductID&gt;\n            &lt;\/RelatedProduct&gt;\n            &lt;RelatedProduct&gt;\n                &lt;RelationType&gt;ReferenceProducts&lt;\/RelationType&gt;\n                &lt;ProductID&gt;263974&lt;\/ProductID&gt;\n                &lt;RelationId&gt;708519&lt;\/RelationId&gt;\n                &lt;Designation xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\" xsi:nil=\"true\"\/&gt;\n            &lt;\/RelatedProduct&gt;\n            &lt;RelatedProduct&gt;\n                &lt;RelationType&gt;ReferenceProducts&lt;\/RelationType&gt;\n                &lt;ProductID&gt;320052&lt;\/ProductID&gt;\n                &lt;RelationId&gt;934754&lt;\/RelationId&gt;\n                &lt;Designation xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\" xsi:nil=\"true\"\/&gt;\n            &lt;\/RelatedProduct&gt;\n            &lt;RelatedProduct&gt;\n                &lt;RelationType&gt;RelatedIntProducts&lt;\/RelationType&gt;\n                &lt;ProductID xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\" xsi:nil=\"true\"\/&gt;\n                &lt;RelationId&gt;116837&lt;\/RelationId&gt;\n                &lt;Relationship&gt;Identical&lt;\/Relationship&gt;\n                &lt;Designation&gt;NEN ISO 1001&lt;\/Designation&gt;\n            &lt;\/RelatedProduct&gt;\n            &lt;RelatedProduct&gt;\n                &lt;RelationType&gt;RelatedIntProducts&lt;\/RelationType&gt;\n                &lt;ProductID&gt;208074&lt;\/ProductID&gt;\n                &lt;RelationId&gt;116843&lt;\/RelationId&gt;\n                &lt;Relationship&gt;Identical&lt;\/Relationship&gt;\n                &lt;Designation xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\" xsi:nil=\"true\"\/&gt;\n            &lt;\/RelatedProduct&gt;\n        &lt;\/RelatedProducts&gt;\n        &lt;S1&gt;1005&lt;\/S1&gt;\n        &lt;S2&gt;1983&lt;\/S2&gt;\n    &lt;\/Standard&gt;\n&lt;\/Standards&gt;\n<\/code><\/pre>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">2<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved Merge different products belong to each standard &#8211; V2 [duplicate] <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] This XSLT will do the thing: &lt;xsl:stylesheet xmlns:xsl=&#8221;http:\/\/www.w3.org\/1999\/XSL\/Transform&#8221; xmlns:x=&#8221;http:\/\/ws.wso2.org\/dataservice&#8221; xmlns=&#8221;http:\/\/ws.wso2.org\/dataservice&#8221; exclude-result-prefixes=&#8221;x&#8221; version=&#8221;1.0&#8243;&gt; &lt;xsl:output indent=&#8221;yes&#8221; method=&#8221;xml&#8221; \/&gt; &lt;xsl:template match=&#8221;x:Standards&#8221;&gt; &lt;Standards namespace=&#8221;{namespace-uri()}&#8221;&gt; &lt;xsl:apply-templates select=&#8221;.\/\/x:Standard&#8221; \/&gt; &lt;\/Standards&gt; &lt;\/xsl:template&gt; &lt;xsl:template match=&#8221;x:Standard&#8221;&gt; &lt;Standard&gt; &lt;xsl:copy-of select=&#8221;x:ProductID&#8221; \/&gt; &lt;xsl:copy-of select=&#8221;x:Prefix&#8221;\/&gt; &lt;xsl:copy-of select=&#8221;x:SNumber&#8221;\/&gt; &lt;RelatedProducts&gt; &lt;xsl:apply-templates select=&#8221;.\/\/x:RelatedProduct&#8221;\/&gt; &lt;\/RelatedProducts&gt; &lt;xsl:copy-of select=&#8221;x:S1&#8243;\/&gt; &lt;xsl:copy-of select=&#8221;x:S2&#8243;\/&gt; &lt;\/Standard&gt; &lt;\/xsl:template&gt; &lt;xsl:template match=&#8221;x:RelatedProduct&#8221;&gt; &lt;xsl:element name=&#8221;RelatedProduct&#8221;&gt; &lt;xsl:element name=&#8221;RelationType&#8221;&gt; &lt;xsl:value-of select=&#8221;name(..)&#8221; \/&gt; &#8230; <a title=\"[Solved] Merge different products belong to each standard &#8211; V2 [duplicate]\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-merge-different-products-belong-to-each-standard-v2-duplicate\/\" aria-label=\"More on [Solved] Merge different products belong to each standard &#8211; V2 [duplicate]\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[577,1023,1096,3167],"class_list":["post-11596","post","type-post","status-publish","format-standard","hentry","category-solved","tag-xml","tag-xslt","tag-xslt-1-0","tag-xslt-2-0"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] Merge different products belong to each standard - V2 [duplicate] - JassWeb<\/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:\/\/jassweb.com\/solved\/solved-merge-different-products-belong-to-each-standard-v2-duplicate\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] Merge different products belong to each standard - V2 [duplicate] - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] This XSLT will do the thing: &lt;xsl:stylesheet xmlns:xsl=&quot;http:\/\/www.w3.org\/1999\/XSL\/Transform&quot; xmlns:x=&quot;http:\/\/ws.wso2.org\/dataservice&quot; xmlns=&quot;http:\/\/ws.wso2.org\/dataservice&quot; exclude-result-prefixes=&quot;x&quot; version=&quot;1.0&quot;&gt; &lt;xsl:output indent=&quot;yes&quot; method=&quot;xml&quot; \/&gt; &lt;xsl:template match=&quot;x:Standards&quot;&gt; &lt;Standards namespace=&quot;{namespace-uri()}&quot;&gt; &lt;xsl:apply-templates select=&quot;.\/\/x:Standard&quot; \/&gt; &lt;\/Standards&gt; &lt;\/xsl:template&gt; &lt;xsl:template match=&quot;x:Standard&quot;&gt; &lt;Standard&gt; &lt;xsl:copy-of select=&quot;x:ProductID&quot; \/&gt; &lt;xsl:copy-of select=&quot;x:Prefix&quot;\/&gt; &lt;xsl:copy-of select=&quot;x:SNumber&quot;\/&gt; &lt;RelatedProducts&gt; &lt;xsl:apply-templates select=&quot;.\/\/x:RelatedProduct&quot;\/&gt; &lt;\/RelatedProducts&gt; &lt;xsl:copy-of select=&quot;x:S1&quot;\/&gt; &lt;xsl:copy-of select=&quot;x:S2&quot;\/&gt; &lt;\/Standard&gt; &lt;\/xsl:template&gt; &lt;xsl:template match=&quot;x:RelatedProduct&quot;&gt; &lt;xsl:element name=&quot;RelatedProduct&quot;&gt; &lt;xsl:element name=&quot;RelationType&quot;&gt; &lt;xsl:value-of select=&quot;name(..)&quot; \/&gt; ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-merge-different-products-belong-to-each-standard-v2-duplicate\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-27T18:48:54+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\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:\/\/jassweb.com\/solved\/solved-merge-different-products-belong-to-each-standard-v2-duplicate\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-merge-different-products-belong-to-each-standard-v2-duplicate\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] Merge different products belong to each standard &#8211; V2 [duplicate]\",\"datePublished\":\"2022-09-27T18:48:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-merge-different-products-belong-to-each-standard-v2-duplicate\/\"},\"wordCount\":32,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"keywords\":[\"xml\",\"xslt\",\"xslt-1.0\",\"xslt-2.0\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-merge-different-products-belong-to-each-standard-v2-duplicate\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-merge-different-products-belong-to-each-standard-v2-duplicate\/\",\"name\":\"[Solved] Merge different products belong to each standard - V2 [duplicate] - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"datePublished\":\"2022-09-27T18:48:54+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-merge-different-products-belong-to-each-standard-v2-duplicate\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-merge-different-products-belong-to-each-standard-v2-duplicate\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-merge-different-products-belong-to-each-standard-v2-duplicate\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] Merge different products belong to each standard &#8211; V2 [duplicate]\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] Merge different products belong to each standard - V2 [duplicate] - JassWeb","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:\/\/jassweb.com\/solved\/solved-merge-different-products-belong-to-each-standard-v2-duplicate\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] Merge different products belong to each standard - V2 [duplicate] - JassWeb","og_description":"[ad_1] This XSLT will do the thing: &lt;xsl:stylesheet xmlns:xsl=\"http:\/\/www.w3.org\/1999\/XSL\/Transform\" xmlns:x=\"http:\/\/ws.wso2.org\/dataservice\" xmlns=\"http:\/\/ws.wso2.org\/dataservice\" exclude-result-prefixes=\"x\" version=\"1.0\"&gt; &lt;xsl:output indent=\"yes\" method=\"xml\" \/&gt; &lt;xsl:template match=\"x:Standards\"&gt; &lt;Standards namespace=\"{namespace-uri()}\"&gt; &lt;xsl:apply-templates select=\".\/\/x:Standard\" \/&gt; &lt;\/Standards&gt; &lt;\/xsl:template&gt; &lt;xsl:template match=\"x:Standard\"&gt; &lt;Standard&gt; &lt;xsl:copy-of select=\"x:ProductID\" \/&gt; &lt;xsl:copy-of select=\"x:Prefix\"\/&gt; &lt;xsl:copy-of select=\"x:SNumber\"\/&gt; &lt;RelatedProducts&gt; &lt;xsl:apply-templates select=\".\/\/x:RelatedProduct\"\/&gt; &lt;\/RelatedProducts&gt; &lt;xsl:copy-of select=\"x:S1\"\/&gt; &lt;xsl:copy-of select=\"x:S2\"\/&gt; &lt;\/Standard&gt; &lt;\/xsl:template&gt; &lt;xsl:template match=\"x:RelatedProduct\"&gt; &lt;xsl:element name=\"RelatedProduct\"&gt; &lt;xsl:element name=\"RelationType\"&gt; &lt;xsl:value-of select=\"name(..)\" \/&gt; ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-merge-different-products-belong-to-each-standard-v2-duplicate\/","og_site_name":"JassWeb","article_published_time":"2022-09-27T18:48:54+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-merge-different-products-belong-to-each-standard-v2-duplicate\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-merge-different-products-belong-to-each-standard-v2-duplicate\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] Merge different products belong to each standard &#8211; V2 [duplicate]","datePublished":"2022-09-27T18:48:54+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-merge-different-products-belong-to-each-standard-v2-duplicate\/"},"wordCount":32,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["xml","xslt","xslt-1.0","xslt-2.0"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-merge-different-products-belong-to-each-standard-v2-duplicate\/","url":"https:\/\/jassweb.com\/solved\/solved-merge-different-products-belong-to-each-standard-v2-duplicate\/","name":"[Solved] Merge different products belong to each standard - V2 [duplicate] - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2022-09-27T18:48:54+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-merge-different-products-belong-to-each-standard-v2-duplicate\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-merge-different-products-belong-to-each-standard-v2-duplicate\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-merge-different-products-belong-to-each-standard-v2-duplicate\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] Merge different products belong to each standard &#8211; V2 [duplicate]"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/11596","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=11596"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/11596\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=11596"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=11596"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=11596"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}