Re: Adding Nested Properties/JSON

2020-03-31 Thread Etienne Jouvin
quot; > } > > passes to Processor #2 which adds a record to a sub-field > > { >"name":"this and that", >"field":"value", >"others": [ > {"name":"here and there"} > ] > } > > p

Re: Adding Nested Properties/JSON

2020-03-31 Thread Darren Govoni
ere and there"}, {"name":"one and two"}, ] } which is the final output. So it's more building a JSON than transforming, sorta. From: Etienne Jouvin Sent: Tuesday, March 31, 2020 9:37 AM To: users@nifi.apache.org Subject:

Re: Adding Nested Properties/JSON

2020-03-31 Thread Etienne Jouvin
o merge two inputs to > join them into a single JSON? > > thanks in advance! > Darren > > > -- > *From:* Etienne Jouvin > *Sent:* Tuesday, March 31, 2020 8:52 AM > *To:* users@nifi.apache.org > *Subject:* Re: Adding Nested Properties/JS

Re: Adding Nested Properties/JSON

2020-03-31 Thread Darren Govoni
n a single Jolt processor do this? Or do I need to merge two inputs to join them into a single JSON? thanks in advance! Darren From: Etienne Jouvin Sent: Tuesday, March 31, 2020 8:52 AM To: users@nifi.apache.org Subject: Re: Adding Nested Properties/JSON He

Re: Adding Nested Properties/JSON

2020-03-31 Thread Etienne Jouvin
Hello. Jolt transformation. Etienne Le mar. 31 mars 2020 à 14:40, Darren Govoni a écrit : > Hi, >I want to use Nifi to design a flow that modifies, updates, etc a > nested JSON document (or that can finally output one at the end). > > For example: > > { >"name":"this and that", >"f

Adding Nested Properties/JSON

2020-03-31 Thread Darren Govoni
Hi, I want to use Nifi to design a flow that modifies, updates, etc a nested JSON document (or that can finally output one at the end). For example: { "name":"this and that", "field":"value", "others": [ {"name":"here and there"}, ... ] } What's the best approach to