<?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 Returns unnecessary output in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/Jolt-Returns-unnecessary-output/m-p/389083#M246888</link>
    <description>&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Just a word of advice so you get better luck with your posts getting noticed and possibly someone to provide you with possible resolution: If you can shorten your&amp;nbsp; json input next time to be isolated only to the problem that would be more helpful.&amp;nbsp; You dont have to post the 99% that works with the 1% that doesnt as long as it doesnt affect the overall structure. For example if you have 50 fields you can just post 1-2 fields and&amp;nbsp; if you have an array of 50 elements , 1-2 elements should be enough.&lt;/P&gt;&lt;P&gt;Going to your problem , if you know that you will only have two amounts all the times as you specified, then you can intercept them in the first shift spec and assign the proper field names (Amount1, Amount2 ) as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[
  {
    "operation": "shift",
    "spec": {
      "*": {
        "CustomFields": {
          "*": {
            "ViewName": {
              "Amount": {
                "@(2,Value)": "[&amp;amp;5].Amount1"
              },
              "*": {
                "@(2,Value)": "[&amp;amp;5].&amp;amp;1"
              }
            }
          }
        },
        "PortfolioSharing": {
          "*": {
            "@(0,PortfolioId)": "[&amp;amp;3].sharing_PortfolioId",
            "@(0,CustomerId)": "[&amp;amp;3].sharing_CustomerId",
            "@(0,PersonalId)": "[&amp;amp;3].sharing_PersonalId",
            "@(0,ReasonId)": "[&amp;amp;3].sharing_ReasonId",
            "@(0,ReasonProgId)": "[&amp;amp;3].sharing_ReasonProgId",
            "@(0,ReasonName)": "[&amp;amp;3].sharing_ReasonName",
            "@(0,Comment)": "[&amp;amp;3].sharing_Comment",
            "@(0,TypeId)": "[&amp;amp;3].sharing_TypeId",
            "@(0,TypeProgId)": "[&amp;amp;3].sharing_TypeProgId",
            "@(0,TypeName)": "[&amp;amp;3].sharing_TypeName"
          }
        },
        "Amount": "[&amp;amp;1].Amount2",
        "*": "[&amp;amp;1].&amp;amp;"
      }
    }
}
  ,
  {
    "operation": "modify-default-beta",
    "spec": {
      "*": {
        // trx_customer
        "ResidentNonresident": "@(1,Resident/Non-resident)",
        "NationalityCountryofIncorporation": "@(1,Nationality/CountryofIncorporation)",
        "PermanantTownCity": "@(1,PermanantTown/City)",
        "SubsidiaryAssociateofanotherorganization": "@(1,Subsidiary/Associateofanotherorganization)",
        "Howdidyougettoknowaboutus": "@(1,Howdidyougettoknowaboutus?)",
        // trx_portfolio
        "UseBankAccountFromCustomer": "@(1,UseBankAccountFromCustomer?)"
      }
    }
},
  {
    "operation": "remove",
    "spec": {
      "*": {
        // trx_customer
        "Resident/Non-resident": "",
        "Nationality/CountryofIncorporation": "",
        "PermanantTown/City": "",
        "Subsidiary/Associateofanotherorganization": "",
        "NatureOf_Business": "",
        "Howdidyougettoknowaboutus?": "",
        //trx_portfolio
        "UseBankAccountFromCustomer?": ""
      }
    }
} /**/
]&lt;/LI-CODE&gt;&lt;P&gt;Hope that solve your problem.&lt;/P&gt;&lt;P&gt;If you found this is helpful, please accept the solution.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 12 Jun 2024 13:47:23 GMT</pubDate>
    <dc:creator>SAMSAL</dc:creator>
    <dc:date>2024-06-12T13:47:23Z</dc:date>
    <item>
      <title>Jolt Returns unnecessary output</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Jolt-Returns-unnecessary-output/m-p/389074#M246883</link>
      <description>&lt;P&gt;This is my input JSON,&lt;BR /&gt;&lt;BR /&gt;[&lt;BR /&gt;{&lt;BR /&gt;"CustomFields": [&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598870,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD2",&lt;BR /&gt;"FieldName": "PaymentMode",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "Cash",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 1,&lt;BR /&gt;"ViewName": "PaymentMode",&lt;BR /&gt;"Type": "dropdown",&lt;BR /&gt;"Id": 118&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598870,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD3",&lt;BR /&gt;"FieldName": "test",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "test",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 119&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598870,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD4",&lt;BR /&gt;"FieldName": "Reason for Transfer",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 1,&lt;BR /&gt;"ViewName": "ReasonforTransfer",&lt;BR /&gt;"Type": "dropdown",&lt;BR /&gt;"Id": 120&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598870,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD5",&lt;BR /&gt;"FieldName": "Remption Mode",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 1,&lt;BR /&gt;"ViewName": "RemptionMode",&lt;BR /&gt;"Type": "dropdown",&lt;BR /&gt;"Id": 128&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598870,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD6",&lt;BR /&gt;"FieldName": "Redemption Bank",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "RedemptionBank",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 129&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598870,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD7",&lt;BR /&gt;"FieldName": "Redemption Account Name",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "RedemptionAccountName",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 130&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598870,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD8",&lt;BR /&gt;"FieldName": "Redemption Account Code",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "RedemptionAccountCode",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 131&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598870,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD9",&lt;BR /&gt;"FieldName": "Money Received Date",&lt;BR /&gt;"DataType": "datetime",&lt;BR /&gt;"Value": "May 7 2024 12:00AM",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "MoneyReceivedDate",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 132&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598870,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD10",&lt;BR /&gt;"FieldName": "Currency Type",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "CurrencyType",&lt;BR /&gt;"Type": "dropdown",&lt;BR /&gt;"Id": 152&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598870,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD11",&lt;BR /&gt;"FieldName": "Amount ",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "Amount",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 153&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598870,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD12",&lt;BR /&gt;"FieldName": "FX Rate",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "FXRate",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 154&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598870,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD13",&lt;BR /&gt;"FieldName": "Calculate Exit Fee",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "CalculateExitFee",&lt;BR /&gt;"Type": "dropdown",&lt;BR /&gt;"Id": 177&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598870,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD14",&lt;BR /&gt;"FieldName": "Exit Fee",&lt;BR /&gt;"DataType": "money",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "ExitFee",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 178&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598870,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD15",&lt;BR /&gt;"FieldName": "FOF Link",&lt;BR /&gt;"DataType": "int",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "FOFLink",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 179&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598870,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD16",&lt;BR /&gt;"FieldName": "Cheque Number ",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "ChequeNumber",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 188&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598870,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD17",&lt;BR /&gt;"FieldName": "Locking Start Date",&lt;BR /&gt;"DataType": "datetime",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 1,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "LockingStartDate",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 236&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598870,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD18",&lt;BR /&gt;"FieldName": "Collection Account(from Investrack)",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "CollectionAccount",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 240&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598870,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD19",&lt;BR /&gt;"FieldName": "Order From Investrack",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "OrderFromInvestrack",&lt;BR /&gt;"Type": "dropdown",&lt;BR /&gt;"Id": 241&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598870,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD20",&lt;BR /&gt;"FieldName": "APX Trade Date",&lt;BR /&gt;"DataType": "datetime",&lt;BR /&gt;"Value": "May 8 2024 12:00AM",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "ApxTradeDate",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 250&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598870,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD21",&lt;BR /&gt;"FieldName": "Skip Document Check(Registered)",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "Skipdocumentcheck",&lt;BR /&gt;"Type": "dropdown",&lt;BR /&gt;"Id": 251&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598870,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD22",&lt;BR /&gt;"FieldName": "IPCounter",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "Ipcounter",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 261&lt;BR /&gt;}&lt;BR /&gt;],&lt;BR /&gt;"CustomerId": 2161271,&lt;BR /&gt;"Id": 598870,&lt;BR /&gt;"Guid": "59d9640e-c00c-4ced-a761-8ab1641cbd37",&lt;BR /&gt;"Created": "2024-05-08T13:37:15.99",&lt;BR /&gt;"Amount": 1000,&lt;BR /&gt;"SwitchPercent": null,&lt;BR /&gt;"Quantity": 0,&lt;BR /&gt;"ItemPrice": null,&lt;BR /&gt;"Kid": null,&lt;BR /&gt;"PaymentDate": "2024-05-08T00:00:00",&lt;BR /&gt;"CustomerAccountId": null,&lt;BR /&gt;"CustomerAccountName": null,&lt;BR /&gt;"CustomerAccountNumber": null,&lt;BR /&gt;"TradeTypeId": 1,&lt;BR /&gt;"TradeTypeProgId": "BUY",&lt;BR /&gt;"TradeTypeName": "Buy",&lt;BR /&gt;"SwitchId": null,&lt;BR /&gt;"OrderStatusId": 16,&lt;BR /&gt;"OrderStatusProgId": "CCL",&lt;BR /&gt;"OrderStatusName": "Cancelled",&lt;BR /&gt;"CurrencyId": 222,&lt;BR /&gt;"CurrencyIso": "LKR",&lt;BR /&gt;"CurrencyName": "Rupee",&lt;BR /&gt;"PortfolioId": 2106841,&lt;BR /&gt;"PortfolioExternalId": null,&lt;BR /&gt;"PortfolioName": "1ShareAPILakmal1234567891ShareAPILakmal123456789",&lt;BR /&gt;"ProductId": 28315,&lt;BR /&gt;"ProductIsin": "LKNWINU00000",&lt;BR /&gt;"ProductName": "NDB WEALTH INCOME FUND",&lt;BR /&gt;"AgreementId": null,&lt;BR /&gt;"AgreementExternalId": null,&lt;BR /&gt;"AgreementName": null,&lt;BR /&gt;"FeeId": 2343,&lt;BR /&gt;"FeeName": "Fee 0.00%",&lt;BR /&gt;"FeeAmountOrPercent": "P",&lt;BR /&gt;"FeeValue": 0,&lt;BR /&gt;"FeeDisplayName": "NAME",&lt;BR /&gt;"CommissionId": null,&lt;BR /&gt;"CommissionName": null,&lt;BR /&gt;"CommissionAmountOrPercent": null,&lt;BR /&gt;"CommissionValue": null,&lt;BR /&gt;"PaymentTypeId": 79,&lt;BR /&gt;"PaymentTypeProgId": "GENERIC_IN",&lt;BR /&gt;"PaymentTypeName": "GENERIC Incoming for SIP",&lt;BR /&gt;"Comment": null,&lt;BR /&gt;"UserId": 6699,&lt;BR /&gt;"UserName": "ndbaviva\\yatheendra",&lt;BR /&gt;"MoxyOrderId": null,&lt;BR /&gt;"OrderModelId": 3,&lt;BR /&gt;"DistributorId": 141,&lt;BR /&gt;"ChannelId": 1,&lt;BR /&gt;"CommissionAmount": null,&lt;BR /&gt;"FeeAmount": 0,&lt;BR /&gt;"NetAmount": 1000,&lt;BR /&gt;"ExchangeFeeAmount": 0,&lt;BR /&gt;"ExchangeFeePercent": 0,&lt;BR /&gt;"ToExchangeAmount": 1000,&lt;BR /&gt;"FxPercent": 1,&lt;BR /&gt;"OrderFxPercent": 1,&lt;BR /&gt;"SupplierAmount": 1000,&lt;BR /&gt;"SupplierItemPrice": null,&lt;BR /&gt;"TradeDate": "2024-05-07T00:00:00",&lt;BR /&gt;"SettleDate": null,&lt;BR /&gt;"SupplierReference": null,&lt;BR /&gt;"GibAmount": 5,&lt;BR /&gt;"ExternalId": null,&lt;BR /&gt;"FeePercent": 0,&lt;BR /&gt;"GibPercent": 0.5,&lt;BR /&gt;"ExchangeAccountId": null,&lt;BR /&gt;"IncentiveDate": null,&lt;BR /&gt;"PaidDate": "2024-05-08T13:41:00",&lt;BR /&gt;"CancelledDate": "2024-06-06T09:11:40.027",&lt;BR /&gt;"StatusChangeDate": "2024-06-06T09:12:00",&lt;BR /&gt;"SavingsId": null,&lt;BR /&gt;"ModelOrderId": null,&lt;BR /&gt;"CashProductId": 28137,&lt;BR /&gt;"CashProductIsin": null,&lt;BR /&gt;"CashProductName": "Cash Account",&lt;BR /&gt;"SupplierFeeAmount": 0,&lt;BR /&gt;"SupplierFeePercent": 0,&lt;BR /&gt;"SupplierFeeId": 2343,&lt;BR /&gt;"SupplierNetFeeAmount": 1000,&lt;BR /&gt;"CustodyId": 0,&lt;BR /&gt;"CustodianId": 0,&lt;BR /&gt;"CashUpFront": 0,&lt;BR /&gt;"OrderMatchId": null,&lt;BR /&gt;"LotNumber": 0,&lt;BR /&gt;"InterestDays": null,&lt;BR /&gt;"BuySettleDays": null,&lt;BR /&gt;"SellSettleDays": null,&lt;BR /&gt;"OwnerId": 6699,&lt;BR /&gt;"OrderdetailTypeId": 909,&lt;BR /&gt;"OrderdetailDate": "2024-05-08T13:36:00",&lt;BR /&gt;"OrderdetailComment": null,&lt;BR /&gt;"PeriodicRedemptionId": null,&lt;BR /&gt;"CreatedByUserId": 6699,&lt;BR /&gt;"IsSettledInAmount": 1,&lt;BR /&gt;"CostPrice": null,&lt;BR /&gt;"NavDate": "2024-05-29T00:00:00",&lt;BR /&gt;"CostDate": null,&lt;BR /&gt;"CommittedCapital": null,&lt;BR /&gt;"ContributedCapital": null,&lt;BR /&gt;"Recallable": 0,&lt;BR /&gt;"PortfolioTypeId": 140,&lt;BR /&gt;"PortfolioTypeProgId": "UNIT TRUST",&lt;BR /&gt;"PortfolioTypeName": "APX TYPE",&lt;BR /&gt;"SellShort": 0,&lt;BR /&gt;"OrderHeaderId": null,&lt;BR /&gt;"PortfolioExternalNumericId": 77623,&lt;BR /&gt;"AxysPortfolioId": "1007919-09",&lt;BR /&gt;"RecordDate": null,&lt;BR /&gt;"RequiresApproval": "NO",&lt;BR /&gt;"Interest": null,&lt;BR /&gt;"AlternativeFee1": null,&lt;BR /&gt;"AlternativeFee2": null,&lt;BR /&gt;"ChannelProgId": "ORD",&lt;BR /&gt;"ChannelName": "Sales",&lt;BR /&gt;"OrderdetialTypeProgId": "FAX",&lt;BR /&gt;"OrderdetialTypeName": "Fax",&lt;BR /&gt;"OrderSourceId": null,&lt;BR /&gt;"OrderSourceValue": null,&lt;BR /&gt;"OrderSource": null,&lt;BR /&gt;"CustomerPersonalId": "1007919",&lt;BR /&gt;"DistributorProgId": "NDBWealth ",&lt;BR /&gt;"CreatedByUserName": "ndbaviva\\yatheendra",&lt;BR /&gt;"BulkOrder": 0,&lt;BR /&gt;"FlowCode": null,&lt;BR /&gt;"ReturnOfCapital": null,&lt;BR /&gt;"RecallableReturnOfCapital": null,&lt;BR /&gt;"PreferredReturn": null,&lt;BR /&gt;"RecallablePreferredReturn": null,&lt;BR /&gt;"ProfitAboveHurdle": null,&lt;BR /&gt;"RecallableProfitAboveHurdle": null,&lt;BR /&gt;"TaxDistributionAmount": null,&lt;BR /&gt;"IsTaxDistribution": 0&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"CustomFields": [&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598869,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD2",&lt;BR /&gt;"FieldName": "PaymentMode",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 1,&lt;BR /&gt;"ViewName": "PaymentMode",&lt;BR /&gt;"Type": "dropdown",&lt;BR /&gt;"Id": 118&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598869,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD3",&lt;BR /&gt;"FieldName": "test",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "test",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 119&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598869,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD4",&lt;BR /&gt;"FieldName": "Reason for Transfer",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 1,&lt;BR /&gt;"ViewName": "ReasonforTransfer",&lt;BR /&gt;"Type": "dropdown",&lt;BR /&gt;"Id": 120&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598869,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD5",&lt;BR /&gt;"FieldName": "Remption Mode",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "CEFT",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 1,&lt;BR /&gt;"ViewName": "RemptionMode",&lt;BR /&gt;"Type": "dropdown",&lt;BR /&gt;"Id": 128&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598869,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD6",&lt;BR /&gt;"FieldName": "Redemption Bank",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "7311001",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "RedemptionBank",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 129&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598869,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD7",&lt;BR /&gt;"FieldName": "Redemption Account Name",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": " C.Y.L. FONSEKAtest1",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "RedemptionAccountName",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 130&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598869,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD8",&lt;BR /&gt;"FieldName": "Redemption Account Code",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": " 108562522565",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "RedemptionAccountCode",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 131&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598869,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD9",&lt;BR /&gt;"FieldName": "Money Received Date",&lt;BR /&gt;"DataType": "datetime",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "MoneyReceivedDate",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 132&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598869,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD10",&lt;BR /&gt;"FieldName": "Currency Type",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "CurrencyType",&lt;BR /&gt;"Type": "dropdown",&lt;BR /&gt;"Id": 152&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598869,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD11",&lt;BR /&gt;"FieldName": "Amount ",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "Amount",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 153&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598869,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD12",&lt;BR /&gt;"FieldName": "FX Rate",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "FXRate",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 154&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598869,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD13",&lt;BR /&gt;"FieldName": "Calculate Exit Fee",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "Yes",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "CalculateExitFee",&lt;BR /&gt;"Type": "dropdown",&lt;BR /&gt;"Id": 177&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598869,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD14",&lt;BR /&gt;"FieldName": "Exit Fee",&lt;BR /&gt;"DataType": "money",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "ExitFee",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 178&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598869,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD15",&lt;BR /&gt;"FieldName": "FOF Link",&lt;BR /&gt;"DataType": "int",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "FOFLink",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 179&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598869,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD16",&lt;BR /&gt;"FieldName": "Cheque Number ",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "ChequeNumber",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 188&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598869,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD17",&lt;BR /&gt;"FieldName": "Locking Start Date",&lt;BR /&gt;"DataType": "datetime",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 1,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "LockingStartDate",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 236&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598869,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD18",&lt;BR /&gt;"FieldName": "Collection Account(from Investrack)",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "CollectionAccount",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 240&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598869,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD19",&lt;BR /&gt;"FieldName": "Order From Investrack",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "OrderFromInvestrack",&lt;BR /&gt;"Type": "dropdown",&lt;BR /&gt;"Id": 241&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598869,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD20",&lt;BR /&gt;"FieldName": "APX Trade Date",&lt;BR /&gt;"DataType": "datetime",&lt;BR /&gt;"Value": "May 8 2024 12:00AM",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "ApxTradeDate",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 250&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598869,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD21",&lt;BR /&gt;"FieldName": "Skip Document Check(Registered)",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "Yes",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "Skipdocumentcheck",&lt;BR /&gt;"Type": "dropdown",&lt;BR /&gt;"Id": 251&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"PrimaryId": 598869,&lt;BR /&gt;"ColumnName": "TRX_ORDER_CUSTOMFIELD22",&lt;BR /&gt;"FieldName": "IPCounter",&lt;BR /&gt;"DataType": "nvarchar",&lt;BR /&gt;"Value": "",&lt;BR /&gt;"HideFromExternalDistributor": 0,&lt;BR /&gt;"IsRequired": 0,&lt;BR /&gt;"ViewName": "Ipcounter",&lt;BR /&gt;"Type": "inputfield",&lt;BR /&gt;"Id": 261&lt;BR /&gt;}&lt;BR /&gt;],&lt;BR /&gt;"CustomerId": 2161271,&lt;BR /&gt;"Id": 598869,&lt;BR /&gt;"Guid": "6e7c2597-30be-4aa1-9db5-0fa53716c60a",&lt;BR /&gt;"Created": "2024-05-08T13:04:48.007",&lt;BR /&gt;"Amount": 11120,&lt;BR /&gt;"SwitchPercent": null,&lt;BR /&gt;"Quantity": 0,&lt;BR /&gt;"ItemPrice": null,&lt;BR /&gt;"Kid": null,&lt;BR /&gt;"PaymentDate": "2024-05-08T13:04:00",&lt;BR /&gt;"CustomerAccountId": null,&lt;BR /&gt;"CustomerAccountName": null,&lt;BR /&gt;"CustomerAccountNumber": null,&lt;BR /&gt;"TradeTypeId": 2,&lt;BR /&gt;"TradeTypeProgId": "SELL",&lt;BR /&gt;"TradeTypeName": "Sell",&lt;BR /&gt;"SwitchId": null,&lt;BR /&gt;"OrderStatusId": 16,&lt;BR /&gt;"OrderStatusProgId": "CCL",&lt;BR /&gt;"OrderStatusName": "Cancelled",&lt;BR /&gt;"CurrencyId": 222,&lt;BR /&gt;"CurrencyIso": "LKR",&lt;BR /&gt;"CurrencyName": "Rupee",&lt;BR /&gt;"PortfolioId": 2076305,&lt;BR /&gt;"PortfolioExternalId": null,&lt;BR /&gt;"PortfolioName": "Y.L. FONSEKA (02)",&lt;BR /&gt;"ProductId": 28431,&lt;BR /&gt;"ProductIsin": "LKNWMNU00002",&lt;BR /&gt;"ProductName": "NDB WEALTH MONEY FUND",&lt;BR /&gt;"AgreementId": null,&lt;BR /&gt;"AgreementExternalId": null,&lt;BR /&gt;"AgreementName": null,&lt;BR /&gt;"FeeId": 2343,&lt;BR /&gt;"FeeName": "Fee 0.00%",&lt;BR /&gt;"FeeAmountOrPercent": "P",&lt;BR /&gt;"FeeValue": 0,&lt;BR /&gt;"FeeDisplayName": "NAME",&lt;BR /&gt;"CommissionId": null,&lt;BR /&gt;"CommissionName": null,&lt;BR /&gt;"CommissionAmountOrPercent": null,&lt;BR /&gt;"CommissionValue": null,&lt;BR /&gt;"PaymentTypeId": 81,&lt;BR /&gt;"PaymentTypeProgId": "GENERIC_OT",&lt;BR /&gt;"PaymentTypeName": "GENERIC Outgoing",&lt;BR /&gt;"Comment": "MIRunningNO",&lt;BR /&gt;"UserId": 22752,&lt;BR /&gt;"UserName": "acupdateU",&lt;BR /&gt;"MoxyOrderId": null,&lt;BR /&gt;"OrderModelId": 6,&lt;BR /&gt;"DistributorId": null,&lt;BR /&gt;"ChannelId": 18,&lt;BR /&gt;"CommissionAmount": null,&lt;BR /&gt;"FeeAmount": 0,&lt;BR /&gt;"NetAmount": 11120,&lt;BR /&gt;"ExchangeFeeAmount": 0,&lt;BR /&gt;"ExchangeFeePercent": 0,&lt;BR /&gt;"ToExchangeAmount": 11120,&lt;BR /&gt;"FxPercent": 1,&lt;BR /&gt;"OrderFxPercent": 1,&lt;BR /&gt;"SupplierAmount": 11120,&lt;BR /&gt;"SupplierItemPrice": null,&lt;BR /&gt;"TradeDate": "2024-05-07T00:00:00",&lt;BR /&gt;"SettleDate": null,&lt;BR /&gt;"SupplierReference": null,&lt;BR /&gt;"GibAmount": 0,&lt;BR /&gt;"ExternalId": null,&lt;BR /&gt;"FeePercent": 0,&lt;BR /&gt;"GibPercent": 0,&lt;BR /&gt;"ExchangeAccountId": null,&lt;BR /&gt;"IncentiveDate": null,&lt;BR /&gt;"PaidDate": null,&lt;BR /&gt;"CancelledDate": "2024-06-06T09:11:40.153",&lt;BR /&gt;"StatusChangeDate": "2024-06-06T09:12:00",&lt;BR /&gt;"SavingsId": null,&lt;BR /&gt;"ModelOrderId": null,&lt;BR /&gt;"CashProductId": 28137,&lt;BR /&gt;"CashProductIsin": null,&lt;BR /&gt;"CashProductName": "Cash Account",&lt;BR /&gt;"SupplierFeeAmount": 0,&lt;BR /&gt;"SupplierFeePercent": 0,&lt;BR /&gt;"SupplierFeeId": 2343,&lt;BR /&gt;"SupplierNetFeeAmount": 11120,&lt;BR /&gt;"CustodyId": 0,&lt;BR /&gt;"CustodianId": 0,&lt;BR /&gt;"CashUpFront": 0,&lt;BR /&gt;"OrderMatchId": null,&lt;BR /&gt;"LotNumber": -1,&lt;BR /&gt;"InterestDays": null,&lt;BR /&gt;"BuySettleDays": null,&lt;BR /&gt;"SellSettleDays": null,&lt;BR /&gt;"OwnerId": 22752,&lt;BR /&gt;"OrderdetailTypeId": null,&lt;BR /&gt;"OrderdetailDate": null,&lt;BR /&gt;"OrderdetailComment": null,&lt;BR /&gt;"PeriodicRedemptionId": null,&lt;BR /&gt;"CreatedByUserId": 22752,&lt;BR /&gt;"IsSettledInAmount": 1,&lt;BR /&gt;"CostPrice": null,&lt;BR /&gt;"NavDate": null,&lt;BR /&gt;"CostDate": null,&lt;BR /&gt;"CommittedCapital": null,&lt;BR /&gt;"ContributedCapital": null,&lt;BR /&gt;"Recallable": 0,&lt;BR /&gt;"PortfolioTypeId": 140,&lt;BR /&gt;"PortfolioTypeProgId": "UNIT TRUST",&lt;BR /&gt;"PortfolioTypeName": "APX TYPE",&lt;BR /&gt;"SellShort": 0,&lt;BR /&gt;"OrderHeaderId": null,&lt;BR /&gt;"PortfolioExternalNumericId": 16438,&lt;BR /&gt;"AxysPortfolioId": "1007919-02",&lt;BR /&gt;"RecordDate": null,&lt;BR /&gt;"RequiresApproval": "NO",&lt;BR /&gt;"Interest": null,&lt;BR /&gt;"AlternativeFee1": null,&lt;BR /&gt;"AlternativeFee2": null,&lt;BR /&gt;"ChannelProgId": "CUSTOM17",&lt;BR /&gt;"ChannelName": "API use only",&lt;BR /&gt;"OrderdetialTypeProgId": null,&lt;BR /&gt;"OrderdetialTypeName": null,&lt;BR /&gt;"OrderSourceId": null,&lt;BR /&gt;"OrderSourceValue": null,&lt;BR /&gt;"OrderSource": null,&lt;BR /&gt;"CustomerPersonalId": "1007919",&lt;BR /&gt;"DistributorProgId": null,&lt;BR /&gt;"CreatedByUserName": "acupdateU",&lt;BR /&gt;"BulkOrder": 0,&lt;BR /&gt;"FlowCode": null,&lt;BR /&gt;"ReturnOfCapital": null,&lt;BR /&gt;"RecallableReturnOfCapital": null,&lt;BR /&gt;"PreferredReturn": null,&lt;BR /&gt;"RecallablePreferredReturn": null,&lt;BR /&gt;"ProfitAboveHurdle": null,&lt;BR /&gt;"RecallableProfitAboveHurdle": null,&lt;BR /&gt;"TaxDistributionAmount": null,&lt;BR /&gt;"IsTaxDistribution": 0&lt;BR /&gt;}&lt;BR /&gt;]&lt;BR /&gt;&lt;BR /&gt;==============================================&lt;BR /&gt;&lt;BR /&gt;Here is my JOLT spec,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;[&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;{&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"operation"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;"shift"&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"spec"&lt;/SPAN&gt;: {&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"*"&lt;/SPAN&gt;: {&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"CustomFields"&lt;/SPAN&gt;: {&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"*"&lt;/SPAN&gt;: {&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"@(0,Value)"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;"[&amp;amp;3].@(0,ViewName)"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;}&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;},&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"PortfolioSharing"&lt;/SPAN&gt;: {&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"*"&lt;/SPAN&gt;: {&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"@(0,PortfolioId)"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;"[&amp;amp;3].sharing_PortfolioId"&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"@(0,CustomerId)"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;"[&amp;amp;3].sharing_CustomerId"&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"@(0,PersonalId)"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;"[&amp;amp;3].sharing_PersonalId"&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"@(0,ReasonId)"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;"[&amp;amp;3].sharing_ReasonId"&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"@(0,ReasonProgId)"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;"[&amp;amp;3].sharing_ReasonProgId"&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"@(0,ReasonName)"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;"[&amp;amp;3].sharing_ReasonName"&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"@(0,Comment)"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;"[&amp;amp;3].sharing_Comment"&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"@(0,TypeId)"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;"[&amp;amp;3].sharing_TypeId"&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"@(0,TypeProgId)"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;"[&amp;amp;3].sharing_TypeProgId"&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"@(0,TypeName)"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;"[&amp;amp;3].sharing_TypeName"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;}&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;},&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"*"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;"[&amp;amp;1].&amp;amp;"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;}&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;}&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;},&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;{&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"operation"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;"modify-default-beta"&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"spec"&lt;/SPAN&gt;: {&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"*"&lt;/SPAN&gt;: {&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-comment"&gt;// trx_customer&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"ResidentNonresident"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;"@(1,Resident/Non-resident)"&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"NationalityCountryofIncorporation"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;"@(1,Nationality/CountryofIncorporation)"&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"PermanantTownCity"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;"@(1,PermanantTown/City)"&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"SubsidiaryAssociateofanotherorganization"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;"@(1,Subsidiary/Associateofanotherorganization)"&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"Howdidyougettoknowaboutus"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;"@(1,Howdidyougettoknowaboutus?)"&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-comment"&gt;// trx_portfolio&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"UseBankAccountFromCustomer"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;"@(1,UseBankAccountFromCustomer?)"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;}&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;}&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;},&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;{&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"operation"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;"remove"&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"spec"&lt;/SPAN&gt;: {&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"*"&lt;/SPAN&gt;: {&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-comment"&gt;// trx_customer&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"Resident/Non-resident"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;""&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"Nationality/CountryofIncorporation"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;""&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"PermanantTown/City"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;""&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"Subsidiary/Associateofanotherorganization"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;""&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"NatureOf_Business"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;""&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"Howdidyougettoknowaboutus?"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;""&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-comment"&gt;//trx_portfolio&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;&lt;SPAN class="hljs-attr"&gt;"UseBankAccountFromCustomer?"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;""&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;}&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;}&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN class="hljs-code"&gt;}&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;SPAN class="hljs-code"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;]&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="hljs-ln-numbers"&gt;&lt;SPAN class="hljs-code"&gt;==================================&lt;BR /&gt;After the execute JOLT, result like that,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;[ {&lt;BR /&gt;"PaymentMode" : "Cash",&lt;BR /&gt;"test" : "",&lt;BR /&gt;"ReasonforTransfer" : "",&lt;BR /&gt;"RemptionMode" : "",&lt;BR /&gt;"RedemptionBank" : "",&lt;BR /&gt;"RedemptionAccountName" : "",&lt;BR /&gt;"RedemptionAccountCode" : "",&lt;BR /&gt;"MoneyReceivedDate" : "May 7 2024 12:00AM",&lt;BR /&gt;"CurrencyType" : "",&lt;BR /&gt;"Amount" : [ "", 1000 ],&lt;BR /&gt;"FXRate" : "",&lt;BR /&gt;"CalculateExitFee" : "",&lt;BR /&gt;"ExitFee" : "",&lt;BR /&gt;"FOFLink" : "",&lt;BR /&gt;"ChequeNumber" : "",&lt;BR /&gt;"LockingStartDate" : "",&lt;BR /&gt;"CollectionAccount" : "",&lt;BR /&gt;"OrderFromInvestrack" : "",&lt;BR /&gt;"ApxTradeDate" : "May 8 2024 12:00AM",&lt;BR /&gt;"Skipdocumentcheck" : "",&lt;BR /&gt;"Ipcounter" : "",&lt;BR /&gt;"CustomerId" : 2161271,&lt;BR /&gt;"Id" : 598870,&lt;BR /&gt;"Guid" : "59d9640e-c00c-4ced-a761-8ab1641cbd37",&lt;BR /&gt;"Created" : "2024-05-08T13:37:15.99",&lt;BR /&gt;"SwitchPercent" : null,&lt;BR /&gt;"Quantity" : 0,&lt;BR /&gt;"ItemPrice" : null,&lt;BR /&gt;"Kid" : null,&lt;BR /&gt;"PaymentDate" : "2024-05-08T00:00:00",&lt;BR /&gt;"CustomerAccountId" : null,&lt;BR /&gt;"CustomerAccountName" : null,&lt;BR /&gt;"CustomerAccountNumber" : null,&lt;BR /&gt;"TradeTypeId" : 1,&lt;BR /&gt;"TradeTypeProgId" : "BUY",&lt;BR /&gt;"TradeTypeName" : "Buy",&lt;BR /&gt;"SwitchId" : null,&lt;BR /&gt;"OrderStatusId" : 16,&lt;BR /&gt;"OrderStatusProgId" : "CCL",&lt;BR /&gt;"OrderStatusName" : "Cancelled",&lt;BR /&gt;"CurrencyId" : 222,&lt;BR /&gt;"CurrencyIso" : "LKR",&lt;BR /&gt;"CurrencyName" : "Rupee",&lt;BR /&gt;"PortfolioId" : 2106841,&lt;BR /&gt;"PortfolioExternalId" : null,&lt;BR /&gt;"PortfolioName" : "1ShareAPILakmal1234567891ShareAPILakmal123456789",&lt;BR /&gt;"ProductId" : 28315,&lt;BR /&gt;"ProductIsin" : "LKNWINU00000",&lt;BR /&gt;"ProductName" : "NDB WEALTH INCOME FUND",&lt;BR /&gt;"AgreementId" : null,&lt;BR /&gt;"AgreementExternalId" : null,&lt;BR /&gt;"AgreementName" : null,&lt;BR /&gt;"FeeId" : 2343,&lt;BR /&gt;"FeeName" : "Fee 0.00%",&lt;BR /&gt;"FeeAmountOrPercent" : "P",&lt;BR /&gt;"FeeValue" : 0,&lt;BR /&gt;"FeeDisplayName" : "NAME",&lt;BR /&gt;"CommissionId" : null,&lt;BR /&gt;"CommissionName" : null,&lt;BR /&gt;"CommissionAmountOrPercent" : null,&lt;BR /&gt;"CommissionValue" : null,&lt;BR /&gt;"PaymentTypeId" : 79,&lt;BR /&gt;"PaymentTypeProgId" : "GENERIC_IN",&lt;BR /&gt;"PaymentTypeName" : "GENERIC Incoming for SIP",&lt;BR /&gt;"Comment" : null,&lt;BR /&gt;"UserId" : 6699,&lt;BR /&gt;"UserName" : "ndbaviva\\yatheendra",&lt;BR /&gt;"MoxyOrderId" : null,&lt;BR /&gt;"OrderModelId" : 3,&lt;BR /&gt;"DistributorId" : 141,&lt;BR /&gt;"ChannelId" : 1,&lt;BR /&gt;"CommissionAmount" : null,&lt;BR /&gt;"FeeAmount" : 0,&lt;BR /&gt;"NetAmount" : 1000,&lt;BR /&gt;"ExchangeFeeAmount" : 0,&lt;BR /&gt;"ExchangeFeePercent" : 0,&lt;BR /&gt;"ToExchangeAmount" : 1000,&lt;BR /&gt;"FxPercent" : 1,&lt;BR /&gt;"OrderFxPercent" : 1,&lt;BR /&gt;"SupplierAmount" : 1000,&lt;BR /&gt;"SupplierItemPrice" : null,&lt;BR /&gt;"TradeDate" : "2024-05-07T00:00:00",&lt;BR /&gt;"SettleDate" : null,&lt;BR /&gt;"SupplierReference" : null,&lt;BR /&gt;"GibAmount" : 5,&lt;BR /&gt;"ExternalId" : null,&lt;BR /&gt;"FeePercent" : 0,&lt;BR /&gt;"GibPercent" : 0.5,&lt;BR /&gt;"ExchangeAccountId" : null,&lt;BR /&gt;"IncentiveDate" : null,&lt;BR /&gt;"PaidDate" : "2024-05-08T13:41:00",&lt;BR /&gt;"CancelledDate" : "2024-06-06T09:11:40.027",&lt;BR /&gt;"StatusChangeDate" : "2024-06-06T09:12:00",&lt;BR /&gt;"SavingsId" : null,&lt;BR /&gt;"ModelOrderId" : null,&lt;BR /&gt;"CashProductId" : 28137,&lt;BR /&gt;"CashProductIsin" : null,&lt;BR /&gt;"CashProductName" : "Cash Account",&lt;BR /&gt;"SupplierFeeAmount" : 0,&lt;BR /&gt;"SupplierFeePercent" : 0,&lt;BR /&gt;"SupplierFeeId" : 2343,&lt;BR /&gt;"SupplierNetFeeAmount" : 1000,&lt;BR /&gt;"CustodyId" : 0,&lt;BR /&gt;"CustodianId" : 0,&lt;BR /&gt;"CashUpFront" : 0,&lt;BR /&gt;"OrderMatchId" : null,&lt;BR /&gt;"LotNumber" : 0,&lt;BR /&gt;"InterestDays" : null,&lt;BR /&gt;"BuySettleDays" : null,&lt;BR /&gt;"SellSettleDays" : null,&lt;BR /&gt;"OwnerId" : 6699,&lt;BR /&gt;"OrderdetailTypeId" : 909,&lt;BR /&gt;"OrderdetailDate" : "2024-05-08T13:36:00",&lt;BR /&gt;"OrderdetailComment" : null,&lt;BR /&gt;"PeriodicRedemptionId" : null,&lt;BR /&gt;"CreatedByUserId" : 6699,&lt;BR /&gt;"IsSettledInAmount" : 1,&lt;BR /&gt;"CostPrice" : null,&lt;BR /&gt;"NavDate" : "2024-05-29T00:00:00",&lt;BR /&gt;"CostDate" : null,&lt;BR /&gt;"CommittedCapital" : null,&lt;BR /&gt;"ContributedCapital" : null,&lt;BR /&gt;"Recallable" : 0,&lt;BR /&gt;"PortfolioTypeId" : 140,&lt;BR /&gt;"PortfolioTypeProgId" : "UNIT TRUST",&lt;BR /&gt;"PortfolioTypeName" : "APX TYPE",&lt;BR /&gt;"SellShort" : 0,&lt;BR /&gt;"OrderHeaderId" : null,&lt;BR /&gt;"PortfolioExternalNumericId" : 77623,&lt;BR /&gt;"AxysPortfolioId" : "1007919-09",&lt;BR /&gt;"RecordDate" : null,&lt;BR /&gt;"RequiresApproval" : "NO",&lt;BR /&gt;"Interest" : null,&lt;BR /&gt;"AlternativeFee1" : null,&lt;BR /&gt;"AlternativeFee2" : null,&lt;BR /&gt;"ChannelProgId" : "ORD",&lt;BR /&gt;"ChannelName" : "Sales",&lt;BR /&gt;"OrderdetialTypeProgId" : "FAX",&lt;BR /&gt;"OrderdetialTypeName" : "Fax",&lt;BR /&gt;"OrderSourceId" : null,&lt;BR /&gt;"OrderSourceValue" : null,&lt;BR /&gt;"OrderSource" : null,&lt;BR /&gt;"CustomerPersonalId" : "1007919",&lt;BR /&gt;"DistributorProgId" : "NDBWealth ",&lt;BR /&gt;"CreatedByUserName" : "ndbaviva\\yatheendra",&lt;BR /&gt;"BulkOrder" : 0,&lt;BR /&gt;"FlowCode" : null,&lt;BR /&gt;"ReturnOfCapital" : null,&lt;BR /&gt;"RecallableReturnOfCapital" : null,&lt;BR /&gt;"PreferredReturn" : null,&lt;BR /&gt;"RecallablePreferredReturn" : null,&lt;BR /&gt;"ProfitAboveHurdle" : null,&lt;BR /&gt;"RecallableProfitAboveHurdle" : null,&lt;BR /&gt;"TaxDistributionAmount" : null,&lt;BR /&gt;"IsTaxDistribution" : 0&lt;BR /&gt;}, {&lt;BR /&gt;"PaymentMode" : "",&lt;BR /&gt;"test" : "",&lt;BR /&gt;"ReasonforTransfer" : "",&lt;BR /&gt;"RemptionMode" : "CEFT",&lt;BR /&gt;"RedemptionBank" : "7311001",&lt;BR /&gt;"RedemptionAccountName" : " C.Y.L. FONSEKAtest1",&lt;BR /&gt;"RedemptionAccountCode" : " 108562522565",&lt;BR /&gt;"MoneyReceivedDate" : "",&lt;BR /&gt;"CurrencyType" : "",&lt;BR /&gt;"Amount" : [ "", 11120 ],&lt;BR /&gt;"FXRate" : "",&lt;BR /&gt;"CalculateExitFee" : "Yes",&lt;BR /&gt;"ExitFee" : "",&lt;BR /&gt;"FOFLink" : "",&lt;BR /&gt;"ChequeNumber" : "",&lt;BR /&gt;"LockingStartDate" : "",&lt;BR /&gt;"CollectionAccount" : "",&lt;BR /&gt;"OrderFromInvestrack" : "",&lt;BR /&gt;"ApxTradeDate" : "May 8 2024 12:00AM",&lt;BR /&gt;"Skipdocumentcheck" : "Yes",&lt;BR /&gt;"Ipcounter" : "",&lt;BR /&gt;"CustomerId" : 2161271,&lt;BR /&gt;"Id" : 598869,&lt;BR /&gt;"Guid" : "6e7c2597-30be-4aa1-9db5-0fa53716c60a",&lt;BR /&gt;"Created" : "2024-05-08T13:04:48.007",&lt;BR /&gt;"SwitchPercent" : null,&lt;BR /&gt;"Quantity" : 0,&lt;BR /&gt;"ItemPrice" : null,&lt;BR /&gt;"Kid" : null,&lt;BR /&gt;"PaymentDate" : "2024-05-08T13:04:00",&lt;BR /&gt;"CustomerAccountId" : null,&lt;BR /&gt;"CustomerAccountName" : null,&lt;BR /&gt;"CustomerAccountNumber" : null,&lt;BR /&gt;"TradeTypeId" : 2,&lt;BR /&gt;"TradeTypeProgId" : "SELL",&lt;BR /&gt;"TradeTypeName" : "Sell",&lt;BR /&gt;"SwitchId" : null,&lt;BR /&gt;"OrderStatusId" : 16,&lt;BR /&gt;"OrderStatusProgId" : "CCL",&lt;BR /&gt;"OrderStatusName" : "Cancelled",&lt;BR /&gt;"CurrencyId" : 222,&lt;BR /&gt;"CurrencyIso" : "LKR",&lt;BR /&gt;"CurrencyName" : "Rupee",&lt;BR /&gt;"PortfolioId" : 2076305,&lt;BR /&gt;"PortfolioExternalId" : null,&lt;BR /&gt;"PortfolioName" : "Y.L. FONSEKA (02)",&lt;BR /&gt;"ProductId" : 28431,&lt;BR /&gt;"ProductIsin" : "LKNWMNU00002",&lt;BR /&gt;"ProductName" : "NDB WEALTH MONEY FUND",&lt;BR /&gt;"AgreementId" : null,&lt;BR /&gt;"AgreementExternalId" : null,&lt;BR /&gt;"AgreementName" : null,&lt;BR /&gt;"FeeId" : 2343,&lt;BR /&gt;"FeeName" : "Fee 0.00%",&lt;BR /&gt;"FeeAmountOrPercent" : "P",&lt;BR /&gt;"FeeValue" : 0,&lt;BR /&gt;"FeeDisplayName" : "NAME",&lt;BR /&gt;"CommissionId" : null,&lt;BR /&gt;"CommissionName" : null,&lt;BR /&gt;"CommissionAmountOrPercent" : null,&lt;BR /&gt;"CommissionValue" : null,&lt;BR /&gt;"PaymentTypeId" : 81,&lt;BR /&gt;"PaymentTypeProgId" : "GENERIC_OT",&lt;BR /&gt;"PaymentTypeName" : "GENERIC Outgoing",&lt;BR /&gt;"Comment" : "MIRunningNO",&lt;BR /&gt;"UserId" : 22752,&lt;BR /&gt;"UserName" : "acupdateU",&lt;BR /&gt;"MoxyOrderId" : null,&lt;BR /&gt;"OrderModelId" : 6,&lt;BR /&gt;"DistributorId" : null,&lt;BR /&gt;"ChannelId" : 18,&lt;BR /&gt;"CommissionAmount" : null,&lt;BR /&gt;"FeeAmount" : 0,&lt;BR /&gt;"NetAmount" : 11120,&lt;BR /&gt;"ExchangeFeeAmount" : 0,&lt;BR /&gt;"ExchangeFeePercent" : 0,&lt;BR /&gt;"ToExchangeAmount" : 11120,&lt;BR /&gt;"FxPercent" : 1,&lt;BR /&gt;"OrderFxPercent" : 1,&lt;BR /&gt;"SupplierAmount" : 11120,&lt;BR /&gt;"SupplierItemPrice" : null,&lt;BR /&gt;"TradeDate" : "2024-05-07T00:00:00",&lt;BR /&gt;"SettleDate" : null,&lt;BR /&gt;"SupplierReference" : null,&lt;BR /&gt;"GibAmount" : 0,&lt;BR /&gt;"ExternalId" : null,&lt;BR /&gt;"FeePercent" : 0,&lt;BR /&gt;"GibPercent" : 0,&lt;BR /&gt;"ExchangeAccountId" : null,&lt;BR /&gt;"IncentiveDate" : null,&lt;BR /&gt;"PaidDate" : null,&lt;BR /&gt;"CancelledDate" : "2024-06-06T09:11:40.153",&lt;BR /&gt;"StatusChangeDate" : "2024-06-06T09:12:00",&lt;BR /&gt;"SavingsId" : null,&lt;BR /&gt;"ModelOrderId" : null,&lt;BR /&gt;"CashProductId" : 28137,&lt;BR /&gt;"CashProductIsin" : null,&lt;BR /&gt;"CashProductName" : "Cash Account",&lt;BR /&gt;"SupplierFeeAmount" : 0,&lt;BR /&gt;"SupplierFeePercent" : 0,&lt;BR /&gt;"SupplierFeeId" : 2343,&lt;BR /&gt;"SupplierNetFeeAmount" : 11120,&lt;BR /&gt;"CustodyId" : 0,&lt;BR /&gt;"CustodianId" : 0,&lt;BR /&gt;"CashUpFront" : 0,&lt;BR /&gt;"OrderMatchId" : null,&lt;BR /&gt;"LotNumber" : -1,&lt;BR /&gt;"InterestDays" : null,&lt;BR /&gt;"BuySettleDays" : null,&lt;BR /&gt;"SellSettleDays" : null,&lt;BR /&gt;"OwnerId" : 22752,&lt;BR /&gt;"OrderdetailTypeId" : null,&lt;BR /&gt;"OrderdetailDate" : null,&lt;BR /&gt;"OrderdetailComment" : null,&lt;BR /&gt;"PeriodicRedemptionId" : null,&lt;BR /&gt;"CreatedByUserId" : 22752,&lt;BR /&gt;"IsSettledInAmount" : 1,&lt;BR /&gt;"CostPrice" : null,&lt;BR /&gt;"NavDate" : null,&lt;BR /&gt;"CostDate" : null,&lt;BR /&gt;"CommittedCapital" : null,&lt;BR /&gt;"ContributedCapital" : null,&lt;BR /&gt;"Recallable" : 0,&lt;BR /&gt;"PortfolioTypeId" : 140,&lt;BR /&gt;"PortfolioTypeProgId" : "UNIT TRUST",&lt;BR /&gt;"PortfolioTypeName" : "APX TYPE",&lt;BR /&gt;"SellShort" : 0,&lt;BR /&gt;"OrderHeaderId" : null,&lt;BR /&gt;"PortfolioExternalNumericId" : 16438,&lt;BR /&gt;"AxysPortfolioId" : "1007919-02",&lt;BR /&gt;"RecordDate" : null,&lt;BR /&gt;"RequiresApproval" : "NO",&lt;BR /&gt;"Interest" : null,&lt;BR /&gt;"AlternativeFee1" : null,&lt;BR /&gt;"AlternativeFee2" : null,&lt;BR /&gt;"ChannelProgId" : "CUSTOM17",&lt;BR /&gt;"ChannelName" : "API use only",&lt;BR /&gt;"OrderdetialTypeProgId" : null,&lt;BR /&gt;"OrderdetialTypeName" : null,&lt;BR /&gt;"OrderSourceId" : null,&lt;BR /&gt;"OrderSourceValue" : null,&lt;BR /&gt;"OrderSource" : null,&lt;BR /&gt;"CustomerPersonalId" : "1007919",&lt;BR /&gt;"DistributorProgId" : null,&lt;BR /&gt;"CreatedByUserName" : "acupdateU",&lt;BR /&gt;"BulkOrder" : 0,&lt;BR /&gt;"FlowCode" : null,&lt;BR /&gt;"ReturnOfCapital" : null,&lt;BR /&gt;"RecallableReturnOfCapital" : null,&lt;BR /&gt;"PreferredReturn" : null,&lt;BR /&gt;"RecallablePreferredReturn" : null,&lt;BR /&gt;"ProfitAboveHurdle" : null,&lt;BR /&gt;"RecallableProfitAboveHurdle" : null,&lt;BR /&gt;"TaxDistributionAmount" : null,&lt;BR /&gt;"IsTaxDistribution" : 0&lt;BR /&gt;} ]&lt;BR /&gt;&lt;BR /&gt;===============================&lt;BR /&gt;&lt;BR /&gt;The problem is here,&lt;BR /&gt;"&lt;STRONG&gt;Amount" : [ "", 1000 ]&lt;/STRONG&gt;"&lt;BR /&gt;&lt;BR /&gt;There are two "Amount" fields in my input json, First one is in the "CustomFiled" and the other one is in the main root json,&lt;BR /&gt;&lt;BR /&gt;I need to get these two "Amount" fields separately,&amp;nbsp;&lt;BR /&gt;as an example,&lt;BR /&gt;"&lt;STRONG&gt;Amount1&lt;/STRONG&gt;" and "&lt;STRONG&gt;Amount2&lt;/STRONG&gt;",&lt;BR /&gt;&lt;/SPAN&gt;To do this, How do I change my JOLT spec.?&lt;BR /&gt;&lt;BR /&gt;Thanks for advance.&lt;/DIV&gt;</description>
      <pubDate>Wed, 12 Jun 2024 09:27:51 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Jolt-Returns-unnecessary-output/m-p/389074#M246883</guid>
      <dc:creator>Thar11027</dc:creator>
      <dc:date>2024-06-12T09:27:51Z</dc:date>
    </item>
    <item>
      <title>Re: Jolt Returns unnecessary output</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Jolt-Returns-unnecessary-output/m-p/389083#M246888</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Just a word of advice so you get better luck with your posts getting noticed and possibly someone to provide you with possible resolution: If you can shorten your&amp;nbsp; json input next time to be isolated only to the problem that would be more helpful.&amp;nbsp; You dont have to post the 99% that works with the 1% that doesnt as long as it doesnt affect the overall structure. For example if you have 50 fields you can just post 1-2 fields and&amp;nbsp; if you have an array of 50 elements , 1-2 elements should be enough.&lt;/P&gt;&lt;P&gt;Going to your problem , if you know that you will only have two amounts all the times as you specified, then you can intercept them in the first shift spec and assign the proper field names (Amount1, Amount2 ) as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[
  {
    "operation": "shift",
    "spec": {
      "*": {
        "CustomFields": {
          "*": {
            "ViewName": {
              "Amount": {
                "@(2,Value)": "[&amp;amp;5].Amount1"
              },
              "*": {
                "@(2,Value)": "[&amp;amp;5].&amp;amp;1"
              }
            }
          }
        },
        "PortfolioSharing": {
          "*": {
            "@(0,PortfolioId)": "[&amp;amp;3].sharing_PortfolioId",
            "@(0,CustomerId)": "[&amp;amp;3].sharing_CustomerId",
            "@(0,PersonalId)": "[&amp;amp;3].sharing_PersonalId",
            "@(0,ReasonId)": "[&amp;amp;3].sharing_ReasonId",
            "@(0,ReasonProgId)": "[&amp;amp;3].sharing_ReasonProgId",
            "@(0,ReasonName)": "[&amp;amp;3].sharing_ReasonName",
            "@(0,Comment)": "[&amp;amp;3].sharing_Comment",
            "@(0,TypeId)": "[&amp;amp;3].sharing_TypeId",
            "@(0,TypeProgId)": "[&amp;amp;3].sharing_TypeProgId",
            "@(0,TypeName)": "[&amp;amp;3].sharing_TypeName"
          }
        },
        "Amount": "[&amp;amp;1].Amount2",
        "*": "[&amp;amp;1].&amp;amp;"
      }
    }
}
  ,
  {
    "operation": "modify-default-beta",
    "spec": {
      "*": {
        // trx_customer
        "ResidentNonresident": "@(1,Resident/Non-resident)",
        "NationalityCountryofIncorporation": "@(1,Nationality/CountryofIncorporation)",
        "PermanantTownCity": "@(1,PermanantTown/City)",
        "SubsidiaryAssociateofanotherorganization": "@(1,Subsidiary/Associateofanotherorganization)",
        "Howdidyougettoknowaboutus": "@(1,Howdidyougettoknowaboutus?)",
        // trx_portfolio
        "UseBankAccountFromCustomer": "@(1,UseBankAccountFromCustomer?)"
      }
    }
},
  {
    "operation": "remove",
    "spec": {
      "*": {
        // trx_customer
        "Resident/Non-resident": "",
        "Nationality/CountryofIncorporation": "",
        "PermanantTown/City": "",
        "Subsidiary/Associateofanotherorganization": "",
        "NatureOf_Business": "",
        "Howdidyougettoknowaboutus?": "",
        //trx_portfolio
        "UseBankAccountFromCustomer?": ""
      }
    }
} /**/
]&lt;/LI-CODE&gt;&lt;P&gt;Hope that solve your problem.&lt;/P&gt;&lt;P&gt;If you found this is helpful, please accept the solution.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jun 2024 13:47:23 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Jolt-Returns-unnecessary-output/m-p/389083#M246888</guid>
      <dc:creator>SAMSAL</dc:creator>
      <dc:date>2024-06-12T13:47:23Z</dc:date>
    </item>
  </channel>
</rss>

