I want to parse JSON with Swift 4.1
I know this might look similar at first glance.
Now, Swift 4.1 and Codable gives us a great tool.
However how do I use it / parse it - when I don't know the structure???
Lets say my JSON can be
{ "foo" : "bar" }
and also
{ "foo" : { "baz" : "bar" }}
Or even as simple as
{ "foo" : 1 }
Then I can't use Codable right? Or did I totally get it wrong?
How to parse it then??