I heard this library now has automatic decoding into a plain record type, like simple-json is known for. https://github.com/purescript-contrib/purescript-argonaut-codecs/pull/46/ It would be nice to see in the README that this library has this functionality, and to see an example of how to use it. I guess it would be used something like this: ``` testDecode :: Maybe { a :: Int, b :: String } testDecode = decodeJson """ { a: 123, b: "xyz" } """ ```