<?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>question Re: Jolt Transformation returning null values in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/Jolt-Transformation-returning-null-values/m-p/380145#M244004</link>
    <description>&lt;P&gt;Hi &lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/99271"&gt;@Alevc&lt;/a&gt; ,&lt;/P&gt;&lt;P&gt;It seems the problem with the syntax "&amp;amp;[&amp;amp;3]"&amp;nbsp; that is used inside the RUBRICS elements transformation. Notice how its always producing an array of three elements for each RUBRICS element index, this happen to matche the number of objects in the parent array at level &amp;amp;3. Since all parent object have at least 1 RUBRIC object at index 0, they will be grouped together under 0, however only the 3rd Parent object has more than one elements so when it try to group under index 1,2,3...10 only one object is found so its adds two &lt;STRONG&gt;null&lt;/STRONG&gt; values to the array to keep total at 3. Im not sure why its doing this, I thought I understand jolt but sometimes I find that Im still scratching the surface :).&lt;/P&gt;&lt;P&gt;The good news is I have seen this pattern&amp;nbsp; before and I know how to resolve. The challenge here is how to combine both child and parent attributes together to form a unique object against each child. You can do this by creating a unique key to help you group each parent &amp;amp; child attributes under one object assigned to that key, that will be the first transformation. The second transformation is to dump all parent &amp;amp; child object into the final array leaving the assigned unique key behind.&lt;/P&gt;&lt;P&gt;The unique key in this case can be combination of parent index and child index. I used underscore (_) to separate.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[
  // First transformation to group each parent\child attributes
  // under a unique key using combination of parent index and 
  // chilld index , for example the first child under the first 
  // parent will have 0_0, first child of second parent will be 1_0,
  // 2ed child of the 3rd parent will be 2_1 and so on
  {
    "operation": "shift",
    "spec": {
      "*": {
        "RUBRICS": {
          "*": {
            "@name": "[#].&amp;amp;1_&amp;amp;3.RUBRIC",
            "@business_unit": "[#].&amp;amp;1_&amp;amp;3.COMPENSATION_GROUP",
            "@classification": "[#].&amp;amp;1_&amp;amp;3.CLASSIFICATION",
            "@code": "[#].&amp;amp;1_&amp;amp;3.CODE",
            "@amount": "[#].&amp;amp;1_&amp;amp;3.AMOUNT",
            "@type": "[#].&amp;amp;1_&amp;amp;3.TYPE",
            "@aggregation_key": "[#].&amp;amp;1_&amp;amp;3.AGGREGATION_KEY",
            "@(2,ENTITY_TYPE)": "[#].&amp;amp;1_&amp;amp;3.ENTITY_TYPE",
            "@(2,ENTITY_ID)": "[#].&amp;amp;1_&amp;amp;3.ENTITY_ID",
            "@(2,ENTITY_DOCUMENT)": "[#].&amp;amp;1_&amp;amp;3.ENTITY_DOCUMENT",
            "@(2,CALCULATION_DATE)": "[#].&amp;amp;1_&amp;amp;3.CALCULATION_DATE"
          }
        }
      }
    }
  },
  // Second trabsforamtion is to dump all combined parent &amp;amp;
  // child objects into the final array without the keys.
  {
    "operation": "shift",
    "spec": {
      "*": {
        "*": "[]"
      }
    }
}
  ]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you find this helpful &lt;STRONG&gt;please&lt;/STRONG&gt; accept solution.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Sat, 02 Dec 2023 14:55:58 GMT</pubDate>
    <dc:creator>SAMSAL</dc:creator>
    <dc:date>2023-12-02T14:55:58Z</dc:date>
    <item>
      <title>Jolt Transformation returning null values</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Jolt-Transformation-returning-null-values/m-p/380088#M243995</link>
      <description>&lt;P&gt;Hi, I'm trying to get this JOLT working, but in some cases, in the output is printing null values. The qty of itens inside RUBRICS array is dynamic. What am I doing wrong ?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Payload&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[
  {
    "ENTITY_DOCUMENT": "11",
    "ENTITY_ID": "",
    "ENTITY_TYPE": "TEST_CARD",
    "CLOSED": true,
    "CALCULATION_DATE": "2023-11-01",
    "RUBRICS": [
      {
        "name": "provisao_TEST_card",
        "classification": "",
        "code": "",
        "amount": 110.08,
        "type": "",
        "business_unit": "TEST",
        "aggregation_key": ""
      }
    ]
  },
  {
    "ENTITY_DOCUMENT": "12",
    "ENTITY_ID": "",
    "ENTITY_TYPE": "TEST_CARD",
    "CLOSED": true,
    "CALCULATION_DATE": "2023-11-01",
    "RUBRICS": [
      {
        "name": "provisao_TEST_card",
        "classification": "",
        "code": "",
        "amount": 120.08,
        "type": "",
        "business_unit": "TEST",
        "aggregation_key": ""
      }
    ]
  },
  {
    "ENTITY_DOCUMENT": "13",
    "ENTITY_ID": "",
    "ENTITY_TYPE": "TEST_CARD",
    "CLOSED": true,
    "CALCULATION_DATE": "2023-11-01",
    "RUBRICS": [
      {
        "name": "app_TEST_card",
        "classification": "",
        "code": "",
        "amount": 1301.34,
        "type": "",
        "business_unit": "TEST",
        "aggregation_key": ""
      },
      {
        "name": "cred_cofins_cashback_TEST_card",
        "classification": "",
        "code": "",
        "amount": 140.16,
        "type": "",
        "business_unit": "TEST",
        "aggregation_key": ""
      },
      {
        "name": "consumo_TEST_card",
        "classification": "",
        "code": "",
        "amount": 150.35,
        "type": "",
        "business_unit": "TEST",
        "aggregation_key": ""
      },
      {
        "name": "consumo_TEST_card_manual",
        "classification": "",
        "code": "",
        "amount": 160.94,
        "type": "",
        "business_unit": "TEST",
        "aggregation_key": ""
      },
      {
        "name": "cred_pis_cashback_TEST_card",
        "classification": "",
        "code": "",
        "amount": 170.45,
        "type": "",
        "business_unit": "TEST",
        "aggregation_key": ""
      },
      {
        "name": "breakage_TEST_card",
        "classification": "",
        "code": "",
        "amount": 180.85,
        "type": "",
        "business_unit": "TEST",
        "aggregation_key": ""
      },
      {
        "name": "pis_breakage_TEST_card",
        "classification": "",
        "code": "",
        "amount": 190.01,
        "type": "",
        "business_unit": "TEST",
        "aggregation_key": ""
      },
      {
        "name": "perda_adquirencia_TEST_card",
        "classification": "",
        "code": "",
        "amount": 200.77,
        "type": "",
        "business_unit": "TEST",
        "aggregation_key": ""
      },
      {
        "name": "cofins_breakage_TEST_card",
        "classification": "",
        "code": "",
        "amount": 210.04,
        "type": "",
        "business_unit": "TEST",
        "aggregation_key": ""
      },
      {
        "name": "consumo_TEST_card_cashback",
        "classification": "",
        "code": "",
        "amount": 220.49,
        "type": "",
        "business_unit": "TEST",
        "aggregation_key": ""
      },
      {
        "name": "cashback_TEST_card",
        "classification": "",
        "code": "",
        "amount": 230.33,
        "type": "",
        "business_unit": "TEST",
        "aggregation_key": ""
      }
    ]
  }
]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Specs&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[
  {
    "operation": "shift",
    "spec": {
      "*": {
        "RUBRICS": {
          "*": {
            "@name": "&amp;amp;[&amp;amp;3].RUBRIC",
            "@business_unit": "&amp;amp;[&amp;amp;3].COMPENSATION_GROUP",
            "@classification": "&amp;amp;[&amp;amp;3].CLASSIFICATION",
            "@code": "&amp;amp;[&amp;amp;3].CODE",
            "@amount": "&amp;amp;[&amp;amp;3].AMOUNT",
            "@type": "&amp;amp;[&amp;amp;3].TYPE",
            "@aggregation_key": "&amp;amp;[&amp;amp;3].AGGREGATION_KEY",
            "@(2,ENTITY_TYPE)": "&amp;amp;[&amp;amp;3].ENTITY_TYPE",
            "@(2,ENTITY_ID)": "&amp;amp;[&amp;amp;3].ENTITY_ID",
            "@(2,ENTITY_DOCUMENT)": "&amp;amp;[&amp;amp;3].ENTITY_DOCUMENT",
            "@(2,CALCULATION_DATE)": "&amp;amp;[&amp;amp;3].CALCULATION_DATE"
          }
        }
      }
    }
  },
  {
    "operation": "shift",
    "spec": {
      "*": {
        "*": ""
      }
    }
  }
]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Output&lt;BR /&gt;[ {&lt;BR /&gt;"RUBRIC" : "provisao_TEST_card",&lt;BR /&gt;"COMPENSATION_GROUP" : "TEST",&lt;BR /&gt;"CLASSIFICATION" : "",&lt;BR /&gt;"CODE" : "",&lt;BR /&gt;"AMOUNT" : 110.08,&lt;BR /&gt;"TYPE" : "",&lt;BR /&gt;"AGGREGATION_KEY" : "",&lt;BR /&gt;"ENTITY_TYPE" : "TEST_CARD",&lt;BR /&gt;"ENTITY_ID" : "",&lt;BR /&gt;"ENTITY_DOCUMENT" : "11",&lt;BR /&gt;"CALCULATION_DATE" : "2023-11-01"&lt;BR /&gt;}, {&lt;BR /&gt;"RUBRIC" : "provisao_TEST_card",&lt;BR /&gt;"COMPENSATION_GROUP" : "TEST",&lt;BR /&gt;"CLASSIFICATION" : "",&lt;BR /&gt;"CODE" : "",&lt;BR /&gt;"AMOUNT" : 120.08,&lt;BR /&gt;"TYPE" : "",&lt;BR /&gt;"AGGREGATION_KEY" : "",&lt;BR /&gt;"ENTITY_TYPE" : "TEST_CARD",&lt;BR /&gt;"ENTITY_ID" : "",&lt;BR /&gt;"ENTITY_DOCUMENT" : "12",&lt;BR /&gt;"CALCULATION_DATE" : "2023-11-01"&lt;BR /&gt;}, {&lt;BR /&gt;"RUBRIC" : "app_TEST_card",&lt;BR /&gt;"COMPENSATION_GROUP" : "TEST",&lt;BR /&gt;"CLASSIFICATION" : "",&lt;BR /&gt;"CODE" : "",&lt;BR /&gt;"AMOUNT" : 1301.34,&lt;BR /&gt;"TYPE" : "",&lt;BR /&gt;"AGGREGATION_KEY" : "",&lt;BR /&gt;"ENTITY_TYPE" : "TEST_CARD",&lt;BR /&gt;"ENTITY_ID" : "",&lt;BR /&gt;"ENTITY_DOCUMENT" : "13",&lt;BR /&gt;"CALCULATION_DATE" : "2023-11-01"&lt;BR /&gt;}, null, null, {&lt;BR /&gt;"RUBRIC" : "cred_cofins_cashback_TEST_card",&lt;BR /&gt;"COMPENSATION_GROUP" : "TEST",&lt;BR /&gt;"CLASSIFICATION" : "",&lt;BR /&gt;"CODE" : "",&lt;BR /&gt;"AMOUNT" : 140.16,&lt;BR /&gt;"TYPE" : "",&lt;BR /&gt;"AGGREGATION_KEY" : "",&lt;BR /&gt;"ENTITY_TYPE" : "TEST_CARD",&lt;BR /&gt;"ENTITY_ID" : "",&lt;BR /&gt;"ENTITY_DOCUMENT" : "13",&lt;BR /&gt;"CALCULATION_DATE" : "2023-11-01"&lt;BR /&gt;}, null, null, {&lt;BR /&gt;"RUBRIC" : "consumo_TEST_card",&lt;BR /&gt;"COMPENSATION_GROUP" : "TEST",&lt;BR /&gt;"CLASSIFICATION" : "",&lt;BR /&gt;"CODE" : "",&lt;BR /&gt;"AMOUNT" : 150.35,&lt;BR /&gt;"TYPE" : "",&lt;BR /&gt;"AGGREGATION_KEY" : "",&lt;BR /&gt;"ENTITY_TYPE" : "TEST_CARD",&lt;BR /&gt;"ENTITY_ID" : "",&lt;BR /&gt;"ENTITY_DOCUMENT" : "13",&lt;BR /&gt;"CALCULATION_DATE" : "2023-11-01"&lt;BR /&gt;}, null, null, {&lt;BR /&gt;"RUBRIC" : "consumo_TEST_card_manual",&lt;BR /&gt;"COMPENSATION_GROUP" : "TEST",&lt;BR /&gt;"CLASSIFICATION" : "",&lt;BR /&gt;"CODE" : "",&lt;BR /&gt;"AMOUNT" : 160.94,&lt;BR /&gt;"TYPE" : "",&lt;BR /&gt;"AGGREGATION_KEY" : "",&lt;BR /&gt;"ENTITY_TYPE" : "TEST_CARD",&lt;BR /&gt;"ENTITY_ID" : "",&lt;BR /&gt;"ENTITY_DOCUMENT" : "13",&lt;BR /&gt;"CALCULATION_DATE" : "2023-11-01"&lt;BR /&gt;}, null, null, {&lt;BR /&gt;"RUBRIC" : "cred_pis_cashback_TEST_card",&lt;BR /&gt;"COMPENSATION_GROUP" : "TEST",&lt;BR /&gt;"CLASSIFICATION" : "",&lt;BR /&gt;"CODE" : "",&lt;BR /&gt;"AMOUNT" : 170.45,&lt;BR /&gt;"TYPE" : "",&lt;BR /&gt;"AGGREGATION_KEY" : "",&lt;BR /&gt;"ENTITY_TYPE" : "TEST_CARD",&lt;BR /&gt;"ENTITY_ID" : "",&lt;BR /&gt;"ENTITY_DOCUMENT" : "13",&lt;BR /&gt;"CALCULATION_DATE" : "2023-11-01"&lt;BR /&gt;}, null, null, {&lt;BR /&gt;"RUBRIC" : "breakage_TEST_card",&lt;BR /&gt;"COMPENSATION_GROUP" : "TEST",&lt;BR /&gt;"CLASSIFICATION" : "",&lt;BR /&gt;"CODE" : "",&lt;BR /&gt;"AMOUNT" : 180.85,&lt;BR /&gt;"TYPE" : "",&lt;BR /&gt;"AGGREGATION_KEY" : "",&lt;BR /&gt;"ENTITY_TYPE" : "TEST_CARD",&lt;BR /&gt;"ENTITY_ID" : "",&lt;BR /&gt;"ENTITY_DOCUMENT" : "13",&lt;BR /&gt;"CALCULATION_DATE" : "2023-11-01"&lt;BR /&gt;}, null, null, {&lt;BR /&gt;"RUBRIC" : "pis_breakage_TEST_card",&lt;BR /&gt;"COMPENSATION_GROUP" : "TEST",&lt;BR /&gt;"CLASSIFICATION" : "",&lt;BR /&gt;"CODE" : "",&lt;BR /&gt;"AMOUNT" : 190.01,&lt;BR /&gt;"TYPE" : "",&lt;BR /&gt;"AGGREGATION_KEY" : "",&lt;BR /&gt;"ENTITY_TYPE" : "TEST_CARD",&lt;BR /&gt;"ENTITY_ID" : "",&lt;BR /&gt;"ENTITY_DOCUMENT" : "13",&lt;BR /&gt;"CALCULATION_DATE" : "2023-11-01"&lt;BR /&gt;}, &lt;STRONG&gt;null, null&lt;/STRONG&gt;, {&lt;BR /&gt;"RUBRIC" : "perda_adquirencia_TEST_card",&lt;BR /&gt;"COMPENSATION_GROUP" : "TEST",&lt;BR /&gt;"CLASSIFICATION" : "",&lt;BR /&gt;"CODE" : "",&lt;BR /&gt;"AMOUNT" : 200.77,&lt;BR /&gt;"TYPE" : "",&lt;BR /&gt;"AGGREGATION_KEY" : "",&lt;BR /&gt;"ENTITY_TYPE" : "TEST_CARD",&lt;BR /&gt;"ENTITY_ID" : "",&lt;BR /&gt;"ENTITY_DOCUMENT" : "13",&lt;BR /&gt;"CALCULATION_DATE" : "2023-11-01"&lt;BR /&gt;}, &lt;STRONG&gt;null, null&lt;/STRONG&gt;, {&lt;BR /&gt;"RUBRIC" : "cofins_breakage_TEST_card",&lt;BR /&gt;"COMPENSATION_GROUP" : "TEST",&lt;BR /&gt;"CLASSIFICATION" : "",&lt;BR /&gt;"CODE" : "",&lt;BR /&gt;"AMOUNT" : 210.04,&lt;BR /&gt;"TYPE" : "",&lt;BR /&gt;"AGGREGATION_KEY" : "",&lt;BR /&gt;"ENTITY_TYPE" : "TEST_CARD",&lt;BR /&gt;"ENTITY_ID" : "",&lt;BR /&gt;"ENTITY_DOCUMENT" : "13",&lt;BR /&gt;"CALCULATION_DATE" : "2023-11-01"&lt;BR /&gt;}, &lt;STRONG&gt;null, null&lt;/STRONG&gt;, {&lt;BR /&gt;"RUBRIC" : "consumo_TEST_card_cashback",&lt;BR /&gt;"COMPENSATION_GROUP" : "TEST",&lt;BR /&gt;"CLASSIFICATION" : "",&lt;BR /&gt;"CODE" : "",&lt;BR /&gt;"AMOUNT" : 220.49,&lt;BR /&gt;"TYPE" : "",&lt;BR /&gt;"AGGREGATION_KEY" : "",&lt;BR /&gt;"ENTITY_TYPE" : "TEST_CARD",&lt;BR /&gt;"ENTITY_ID" : "",&lt;BR /&gt;"ENTITY_DOCUMENT" : "13",&lt;BR /&gt;"CALCULATION_DATE" : "2023-11-01"&lt;BR /&gt;}, &lt;STRONG&gt;null, null&lt;/STRONG&gt;, {&lt;BR /&gt;"RUBRIC" : "cashback_TEST_card",&lt;BR /&gt;"COMPENSATION_GROUP" : "TEST",&lt;BR /&gt;"CLASSIFICATION" : "",&lt;BR /&gt;"CODE" : "",&lt;BR /&gt;"AMOUNT" : 230.33,&lt;BR /&gt;"TYPE" : "",&lt;BR /&gt;"AGGREGATION_KEY" : "",&lt;BR /&gt;"ENTITY_TYPE" : "TEST_CARD",&lt;BR /&gt;"ENTITY_ID" : "",&lt;BR /&gt;"ENTITY_DOCUMENT" : "13",&lt;BR /&gt;"CALCULATION_DATE" : "2023-11-01"&lt;BR /&gt;} ]&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Dec 2023 18:30:53 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Jolt-Transformation-returning-null-values/m-p/380088#M243995</guid>
      <dc:creator>Alevc</dc:creator>
      <dc:date>2023-12-01T18:30:53Z</dc:date>
    </item>
    <item>
      <title>Re: Jolt Transformation returning null values</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Jolt-Transformation-returning-null-values/m-p/380145#M244004</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/99271"&gt;@Alevc&lt;/a&gt; ,&lt;/P&gt;&lt;P&gt;It seems the problem with the syntax "&amp;amp;[&amp;amp;3]"&amp;nbsp; that is used inside the RUBRICS elements transformation. Notice how its always producing an array of three elements for each RUBRICS element index, this happen to matche the number of objects in the parent array at level &amp;amp;3. Since all parent object have at least 1 RUBRIC object at index 0, they will be grouped together under 0, however only the 3rd Parent object has more than one elements so when it try to group under index 1,2,3...10 only one object is found so its adds two &lt;STRONG&gt;null&lt;/STRONG&gt; values to the array to keep total at 3. Im not sure why its doing this, I thought I understand jolt but sometimes I find that Im still scratching the surface :).&lt;/P&gt;&lt;P&gt;The good news is I have seen this pattern&amp;nbsp; before and I know how to resolve. The challenge here is how to combine both child and parent attributes together to form a unique object against each child. You can do this by creating a unique key to help you group each parent &amp;amp; child attributes under one object assigned to that key, that will be the first transformation. The second transformation is to dump all parent &amp;amp; child object into the final array leaving the assigned unique key behind.&lt;/P&gt;&lt;P&gt;The unique key in this case can be combination of parent index and child index. I used underscore (_) to separate.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[
  // First transformation to group each parent\child attributes
  // under a unique key using combination of parent index and 
  // chilld index , for example the first child under the first 
  // parent will have 0_0, first child of second parent will be 1_0,
  // 2ed child of the 3rd parent will be 2_1 and so on
  {
    "operation": "shift",
    "spec": {
      "*": {
        "RUBRICS": {
          "*": {
            "@name": "[#].&amp;amp;1_&amp;amp;3.RUBRIC",
            "@business_unit": "[#].&amp;amp;1_&amp;amp;3.COMPENSATION_GROUP",
            "@classification": "[#].&amp;amp;1_&amp;amp;3.CLASSIFICATION",
            "@code": "[#].&amp;amp;1_&amp;amp;3.CODE",
            "@amount": "[#].&amp;amp;1_&amp;amp;3.AMOUNT",
            "@type": "[#].&amp;amp;1_&amp;amp;3.TYPE",
            "@aggregation_key": "[#].&amp;amp;1_&amp;amp;3.AGGREGATION_KEY",
            "@(2,ENTITY_TYPE)": "[#].&amp;amp;1_&amp;amp;3.ENTITY_TYPE",
            "@(2,ENTITY_ID)": "[#].&amp;amp;1_&amp;amp;3.ENTITY_ID",
            "@(2,ENTITY_DOCUMENT)": "[#].&amp;amp;1_&amp;amp;3.ENTITY_DOCUMENT",
            "@(2,CALCULATION_DATE)": "[#].&amp;amp;1_&amp;amp;3.CALCULATION_DATE"
          }
        }
      }
    }
  },
  // Second trabsforamtion is to dump all combined parent &amp;amp;
  // child objects into the final array without the keys.
  {
    "operation": "shift",
    "spec": {
      "*": {
        "*": "[]"
      }
    }
}
  ]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you find this helpful &lt;STRONG&gt;please&lt;/STRONG&gt; accept solution.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sat, 02 Dec 2023 14:55:58 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Jolt-Transformation-returning-null-values/m-p/380145#M244004</guid>
      <dc:creator>SAMSAL</dc:creator>
      <dc:date>2023-12-02T14:55:58Z</dc:date>
    </item>
    <item>
      <title>Re: Jolt Transformation returning null values</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Jolt-Transformation-returning-null-values/m-p/380228#M244014</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/80381"&gt;@SAMSAL&lt;/a&gt;. Now it is clear to me why it wasn't working. JOLT has a tricky learning curve, isn't it ?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I do appreciate your attention on helping me.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thanks !!!!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Dec 2023 12:09:31 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Jolt-Transformation-returning-null-values/m-p/380228#M244014</guid>
      <dc:creator>Alevc</dc:creator>
      <dc:date>2023-12-04T12:09:31Z</dc:date>
    </item>
  </channel>
</rss>

