JSON diff of large JSON data, finding some JSON as a subset of another JSON

I have a problem I'd like to solve to not have to spend a lot of manual work to analyze as an alternative.

I have 2 JSON objects (returned from different web service API or HTTP responses). There is intersecting data between the 2 JSON objects, and they share similar JSON structure, but not identical. One JSON (the smaller one) is like a subset of the bigger JSON object.

I want to find all the interesecting data between the two objects. Actually, I'm more interested in the shared parameters/properties within the object, not really the actual values of the parameters/properties of each object. Because I want to eventually use data from one JSON output to construct the other JSON as input to an API call. Unfortunately, I don't have the documentation that defines the JSON for each API. :(

What makes this tougher is the JSON objects are huge. One spans a page if you print it out via Windows Notepad. The other spans 37 pages. The APIs return the JSON output compressed as a single line. Normal text compare doesn't do much, I'd have to reformat manually or w/ script to break up object w/ newlines, etc. for a text compare to work well. Tried with Beyond Compare tool.

I could do manual search/grep but that's a pain to cycle through all the parameters inside the smaller JSON. Could write code to do it but I'd also have to spend time to do that, and test if the code works also. Or maybe there's some ready made code already for that...

Or can look for JSON diff type tools. Searched for some. Came across these:

https://github.com/samsonjs/json-diff or https://tlrobinson.net/projects/javascript-fun/jsondiff

https://github.com/andreyvit/json-diff

both failed to do what I wanted. Presumably the JSON is either too complex or too large to process.

Any thoughts on best solution? Or might the best solution for now be manual analysis w/ grep for each parameter/property?

In terms of a code solution, any language will do. I just need a parser or diff tool that will do what I want.

Sorry, can't share the JSON data structure with you either, it may be considered confidential.


Beyond Compare works well, if you set up a JSON file format in it to use Python to pretty-print the JSON. Sample setup for Windows:

  • Install Python 2.7.
  • In Beyond Compare, go under Tools, under File Formats.
  • Click New. Choose Text Format. Enter "JSON" as a name.
  • Under the General tab:
  • Mask: *.json
  • Under the Conversion tab:
  • Conversion: External program (Unicode filenames)
  • Loading: c:Python27python.exe -m json.tool %s %t
  • Note, that second parameter in the command line must be %t , if you enter two %s s you will suffer data loss.
  • Click Save.

  • Jeremy Simmons has created a better File Format package Posted on forum: "JsonFileFormat.bcpkg" for BEYOND COMPARE that does not require python or so to be installed.

    Just download the file and open it with BC and you are good to go. So, its much more simpler.

    JSON File Format

    I needed a file format for JSON files.

    I wanted to pretty-print & sort my JSON to make comparison easy.

    I have attached my bcpackage with my completed JSON File Format.

    The formatting is done via jq - http://stedolan.github.io/jq/

    Props to Stephen Dolan for the utility https://github.com/stedolan.

    I have sent a message to the folks at Scooter Software asking them to include it in the page with additional formats.

    If you're interested in seeing it on there, I'm sure a quick reply to the thread with an up-vote would help them see the value posting it. Attached Files Attached Files File Type: bcpkg JsonFileFormat.bcpkg (449.8 KB, 58 views)


    I have a small GPL project that would do the trick for simple JSON. I have not added support for nested entities as it is more of a simple ObjectDB solution and not actually JSON (Despite the fact it was clearly inspired by it.

    Long and short the API is pretty simple. Make a new group, populate it, and then pull a subset via whatever logical parameters you need.

    https://github.com/danielbchapman/groups

    The API is used basically like ->

    SubGroup items = group
                      .notEqual("field", "value")
                      .lessThan("field2", 50); //...etc...
    

    There's actually support for basic unions and joins which would do pretty much what you want.

    Long and short you probably want a Set as your data-type. Considering your comparisons are probably complex you need a more complex set of methods.

    My only caution is that it is GPL. If your data is confidential, odds are you may not be interested in that license.

    链接地址: http://www.djcxy.com/p/8274.html

    上一篇: 如何在PHP中记录漂亮的打印json?

    下一篇: 大型JSON数据的JSON差异,找到一些JSON作为另一个JSON的子集