Deserialize the JSON with:

output: myJObject | TypeArgument: JObject
then we can convert this JObject to a DataTable by:
myDataTable =
Newtonsoft.Json.Linq.JArray.FromObject(new JObject(){myJObject}).ToObject(Of DataTable)
Deserialize the JSON with:

output: myJObject | TypeArgument: JObject
then we can convert this JObject to a DataTable by:
myDataTable =
Newtonsoft.Json.Linq.JArray.FromObject(new JObject(){myJObject}).ToObject(Of DataTable)