Hi all,
Looking for the most idiomatic way to transform some json (retrieved from an http get) into a sequence of "typed" data, with dates as string converted into dates, etc.
I know I could do it manually, map the json array and parse/convert based on property names, but I'm wondering if there's a library that I could use that could do that automatically based on some kind of schema that I'd provide.
Thanks!