Re: [go-nuts] Detecting JSON changes

2022-10-10 Thread Shulhan
On Mon, 10 Oct 2022 07:50:20 -0700 (PDT) Slawomir Pryczek wrote: > Hi Guys, > I have 2 json files, A, B. Now i want to detect changes on the root > level. > > File A: {"a":{"b":1, "c":2}, "x":false, ... } > File B: {"a":{"b":1, "c":2}, "x":true, ... } > > I want to be able to see that x is

Re: [go-nuts] Detecting JSON changes

2022-10-10 Thread burak serdar
On Mon, Oct 10, 2022 at 8:50 AM Slawomir Pryczek wrote: > Hi Guys, > I have 2 json files, A, B. Now i want to detect changes on the root level. > > File A: {"a":{"b":1, "c":2}, "x":false, ... } > File B: {"a":{"b":1, "c":2}, "x":true, ... } > > I want to be able to see that x is different

[go-nuts] Detecting JSON changes

2022-10-10 Thread Slawomir Pryczek
Hi Guys, I have 2 json files, A, B. Now i want to detect changes on the root level. File A: {"a":{"b":1, "c":2}, "x":false, ... } File B: {"a":{"b":1, "c":2}, "x":true, ... } I want to be able to see that x is different between A and B and a stayed the same. What would be the easiest