Hi Team,

Is it possible to filter and eliminate the values in the json data format
using the nifi processors

*Note*:I have used some processor like extract text,Attribute
json,EvaluateJsonpath , but I can't able to generate the required output

*For Example:*
I getting a separate flow files like this,from the json data fetched
{
"YEAR": "2015",
"Month": [{
"MONTH": "Jan",
}]
}

{
"YEAR": "2016",
"Month": [{
"MONTH": "feb",
}]
}
 the output I need should be in the form of given below,
{
"Year": 2016,
"Months": [{
"Month": "Jan",
},
{
"Month": "Feb",
}]
}


Regards,
Manojkumar R

Reply via email to