<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: json to table in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/json-to-table/m-p/2420461#M140177</link>
    <description>&lt;P&gt;I think tDenormalize component can fit you need.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.talend.com/r/en-US/8.0/processing/tdenormalize-standard-properties" target="_blank"&gt;https://help.talend.com/r/en-US/8.0/processing/tdenormalize-standard-properties&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 19 Feb 2024 02:30:12 GMT</pubDate>
    <dc:creator>Shicong_Hong</dc:creator>
    <dc:date>2024-02-19T02:30:12Z</dc:date>
    <item>
      <title>json to table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/json-to-table/m-p/2414037#M140092</link>
      <description>&lt;P&gt;Need help in creating table out of this json response:&lt;/P&gt;
&lt;P&gt;Columns would be&lt;/P&gt;
&lt;P&gt;id | name | pid | &lt;CODE&gt;-48&lt;/CODE&gt; |&amp;nbsp;&lt;CODE&gt;-33 |&amp;nbsp;-39 |&amp;nbsp;1695378 |&amp;nbsp;1695379 | ..... so on will be the headers of the table and record would be&lt;/CODE&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&lt;CODE&gt;7362576 |&amp;nbsp;Call another |&amp;nbsp;TR-44 |&amp;nbsp;0 | 0 | 0 | 4&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;basically i need to understand the properties part not able to pivot&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;{
    "links": [
        {
            "rel": "test-case",
            "href": "https://linhdang.qTestnet.com/api/v3/projects/32029/test-cases/5574277?versionId=6573928"
        },
        {
            "rel": "self",
            "href": "https://linhdang.qTestnet.com/api/v3/projects/32029/test-runs/7362576"
        }
    ],
    "id": 7362576,
    "name": "Call another",
    "pid": "TR-44",
    "properties": [
        {
            "field_id": -48,
            "field_value": "0"
        },
        {
            "field_id": -33,
            "field_value": "0"
        },
        {
            "field_id": -39,
            "field_value": "0"
        },
        {
            "field_id": -59,
            "field_value": "4"
        },
        {
            "field_id": -36,
            "field_value": "1"
        },
        {
            "field_id": 1695378,
            "field_value": "505"
        },
        {
            "field_id": 1695379,
            "field_value": "2016-11-30T17:00:00+00:00"
        },
        {
            "field_id": 1695380
        },
        {
            "field_id": 1695381,
            "field_value": "2016-11-30T17:00:00+00:00"
        },
        {
            "field_id": 1695374,
            "field_value": "5202"
        },
        {
            "field_id": 1695387,
            "field_value": "601"
        },
        {
            "field_id": 1695385,
            "field_value": "723"
        }
    ],
    "test_case_version_id": 6573928,
    "creator_id": 5202
}&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Feb 2024 13:29:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/json-to-table/m-p/2414037#M140092</guid>
      <dc:creator>Jayesh47</dc:creator>
      <dc:date>2024-02-02T13:29:41Z</dc:date>
    </item>
    <item>
      <title>Re: json to table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/json-to-table/m-p/2414510#M140093</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Extract the column names from Json response, build the 'Create table statement SQL' string on a tJavaFlex component, store the string to a global variable for used later on tXXXRow.&lt;/P&gt;
&lt;P&gt;In next subjob, execute the 'create table statement SQL' on tXXXRow to create the table.&lt;/P&gt;
&lt;P&gt;In next subjob, extract the field_value from Json response again, denormalize the rows to be only one row and insert it to the table.&lt;/P&gt;
&lt;P&gt;I'm afraid the column name cannot begin with a negative sign, it will be replaced with underline, such as "_48".&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you try and let me know if you have any issues?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Feb 2024 19:00:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/json-to-table/m-p/2414510#M140093</guid>
      <dc:creator>Shicong_Hong</dc:creator>
      <dc:date>2024-02-04T19:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: json to table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/json-to-table/m-p/2418129#M140151</link>
      <description>&lt;P&gt;Using restclient extractjson and xmap i am able to extract the below data,&lt;/P&gt;
&lt;P&gt;if you can help me the last step of data transformation, screenshot added below&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Jayesh47_0-1707815271596.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/159609i32C1498AA8BBE5C2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Jayesh47_0-1707815271596.png" alt="Jayesh47_0-1707815271596.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2024 09:09:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/json-to-table/m-p/2418129#M140151</guid>
      <dc:creator>Jayesh47</dc:creator>
      <dc:date>2024-02-13T09:09:05Z</dc:date>
    </item>
    <item>
      <title>Re: json to table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/json-to-table/m-p/2420461#M140177</link>
      <description>&lt;P&gt;I think tDenormalize component can fit you need.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.talend.com/r/en-US/8.0/processing/tdenormalize-standard-properties" target="_blank"&gt;https://help.talend.com/r/en-US/8.0/processing/tdenormalize-standard-properties&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 02:30:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/json-to-table/m-p/2420461#M140177</guid>
      <dc:creator>Shicong_Hong</dc:creator>
      <dc:date>2024-02-19T02:30:12Z</dc:date>
    </item>
  </channel>
</rss>

