Can JsonNode get all lines of JSON without knowing the schema?
Let's say I am expecting a simple JSON response from an API like so: { "message": "Source: ", "incomingUrl": "https://10.1.1/api/echo", "incomingHeadersCount": 21, "apiVersion": "1.0" } I can use JsonNode to parse it and output the lines. This requires me to…