imports Newtonsoft.Json.Linq
" ""name"": ""Tiger Nixon""," +
" ""position"": ""System Architect""," +
" ""salary"": ""$320,800""," +
" ""start_date"": ""2011/04/25""," +
" ""office"": ""Edinburgh""," +
Dim jo As JObject = JObject.Parse(json)
jo = New JObject(New JProperty("data", New JArray(jo)))
Console.WriteLine(jo.ToString())