I am using the Newtonsoft JSON library to perform dynamic deserialisation on incoming raw JSON and have found something that I just can\'t explain.
The starting poin
You can try this:
dynamic task = JObject.Parse(rawJson);
Documentation: Querying JSON with dynamic