public static void Main()
""identityName"": ""idenity1"",
""fullName"": ""FullName1""
""identityName"": ""identity2"",
""fullName"": ""FullName2""
StringBuilder csv = new StringBuilder();
using (var r = ChoJSONReader.LoadText(json)
.WithField("recipients", jsonPath: "$..recipients[*]..identityName")
using (var w = new ChoCSVWriter(csv)
.UseNestedKeyFormat(false)
Console.WriteLine(csv.ToString());