Hi,
I've got a set of API's which returns a set of data (JSON format). 95% of the data is static and the rest of the data would change every minute or so, and I need to
test these API's. The requirements are
1. Check if the key-value pair are matching (assert) for the static part of the data.
2. Check if the key(s) are present in the dynamic part of the data.
I did look around in Jackson and simpleJsonParser but could not find anything. Is there any library which helps me to do this? Or would I have to write the logic for this from scratch?
Thanks
