I'm currently trying to deserialize JSON strings returned from a web API using Json.NET. My problem is that in the response there are nested properties which always have the same structure (so generally should be deserialized to the same object type), but varying names. Here's a screenshot:
Is there any built in mechanism in Json.NET to handle these record objects? Otherwise, what would be the best way to handle this?
Thanks a lot!