I am writing jolt for transforming this data but not getting desired result If practice_loc,prac_num and topId are same for two or more data then the ...
I am writing jolt for transforming this data but not getting desired result If practice_loc,prac_num and topId are same for two or more data then the ...
I am trying to transform the JSON as below expected output. Stuck with the spec below. Can someone help in this? There is an inner array with name "c ...
I have a need to get data out of a NiFi flow file with somewhat complex JSON content. I'm planning to use a NiFi ExecuteScript processor because I don ...
I want to know how to use shift and modify-overwrite-beta for the below input. Please explain how it works with your answer. Input: [ { "data" ...
I'm looking for breaking following nested JSON file and transform it into a SQL prepared format. Input JSON file: Desired output: ...
I have a JSON input : { "id": "Root_ID", "Item": [ { "id": "ID_1", "characteristic": [ { "name": "char1", ...
I have the following JSON : { "Content": [ { "CandidateFirstName": "Nagu", "Applications": { "ApplicationId": "456", ...
I am new to JOLT. I am creating a JOLT specification to parse a JSON from one format to another. However when i use the RHS as "&1.name" it doesn' ...
I have a use case, where i need to drop a whole set of record if condition satisfied. Input { "Location": "IND", "Environment": "", "Climate": "Summ ...
I am trying to transform a JSON into another JSON using JOLT. My source JSON has the following format (the number of levels of child modules is not k ...
I want to do a JOLT Transformation and shift the key inside a nested JSON object to uplevel. Here is my input JSON: [ { "deviceNumber": "12873 ...
I have to make a JOLT filter to delete a field based on condition, also the filter has to work with two different JSON structures. So, here is the ca ...
For each array object, get the id and assign it as a key to the array object. I am trying to use the JOLT processor in NIFI. Any help would be much ap ...
JSON to JSON transformation - Need to define a JOLT specification which will remove empty string, space element from a group array element. Below exa ...
I have the following JSON object Input: { "17.39.108.85:80": [], "10.204.32.9:443": [ { "status": "DOWN" } ] } and trying to t ...
I'm looking for flattening nested JSON file into SQL ready format. JSON file's content: { "ProductLine": [ "Product 1", "Product 2" ], ...
I'm looking for breaking nested JSON file and try to flat it to fit into a SQL database. Current JSON: { "content": { "failedPerProductLineAnd ...
I am new to JOLT and I don't know much about it, and I need the JOLT spec to convert my below JSON to CSV file: { "bigRecords": [ { "Reco ...
I need to merge array data from two different arrays from the Input JSON and make a flat list of items in the Output JSON. The first array contains th ...
I am trying to transform the below JSON: From: { "id": 123, "name": { "firstName": "shiva", "lastName": "kumar" }, "dateOfBirth": "1 ...