Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titleVisual comparison of data when JSON list is provided by user and compared to JSON list fetched from database

JSON list provided by user

JSON objects fetched from database

code
Expandcode
titleJSON list
languagejson
{
    "books": [
      {
            "title": "Book 1",
            "lang": "N/A",
            "price": 11,
            "editions": [2009]
      },
      {
            "title": "Book 2",        
            "lang": "German",
            "price": 39,
            "editions": [2007, 2013, 2021]
      }
    ]
  }
code
Expandcode
titleJSON objects
languagejson
[
    {
        "books": {
            "title": "Book 1",
            "lang": "N/A",
            "price": 11,
            "editions": [2009]
        }
    },
    {
        "books": {
            "title": "Book 2",        
            "lang": "German",
            "price": 39,
            "editions": [2007, 2013, 2021]
        }
    }
]

Proposed Solution

WIP