/**
         * Parses the data within a batch and writes it into a file within the batch folder
         */
        private static List<Batch> ParseJBatch(JArray parseArray)
        {
            List<Batch> ret_list = new List<Batch>();
            WebClient wc = new WebClient();
            if (parseArray != null && parseArray.Count > 0)
            {
                foreach (JObject obj in parseArray)
                {
                    try
                    {
                        Batch b = new Batch();
                        Awardee a = new Awardee();
                        JObject temp = (JObject)obj["awardee"];
                        a.name = (String)temp["name"];
                        a.url = (String)temp["url"];
                        b.awardee = a;
                        b.ingested = (String)obj["ingested"];
                        JArray temp2 = (JArray)obj["lccns"];
                        b.lccns = temp2.Select(jv => (string)jv).ToList();
                        b.name = (String)obj["name"];
                        b.page_count = (int)obj["page_count"];
                        b.url = (String)obj["url"];
                        output2 = output1 + "." + (b.name);
                        reloutput2 = reloutput1 + "." + (b.name);
                        b.local_url = reloutput2 + ".json";

                        Stream data = wc.OpenRead((String)obj["url"]);
                        StreamReader reader = new StreamReader(data);
                        string s = reader.ReadToEnd();
                        JObject jobj = JObject.Parse(s);
                        JArray issuesArray = (JArray)jobj["issues"];
                        b.issues = new List<Issue>();
                        foreach (JObject iobj in issuesArray) //parsing only necessary fields here to avoid redundancy in data
                        {
                            Issue i = new Issue();
                            i.date_issued = (String)iobj["date_issued"];
                            Title t = new Title();
                            JObject temp3 = (JObject)iobj["title"];
                            t.name = (String)temp3["name"];
                            t.url = (String)temp3["url"];
                            i.title = t;
                            i.url = (String)obj["url"];
                            output3 = output2 + "." + t.name.Remove(t.name.Length - 1) + "-" + i.date_issued;
                            reloutput3 = reloutput2 + "." + t.name.Remove(t.name.Length - 1) + "-" + i.date_issued;
                            i.local_url = reloutput3 + ".json";
                            b.issues.Add(i);
                        }
                        //writing to the awardee file inside the batch file
                        file = new System.IO.StreamWriter(output2 + ".json");
                        String output = JsonConvert.SerializeObject(b, Formatting.Indented);
                        file.WriteLine(output);
                        file.Close();
                        ret_list.Add(b);
                        ParseJIssues(issuesArray);
                    }
                    catch(Exception e)
                    {
                        continue;
                    }
                }
            }
            return ret_list;
        }
 public static void WriteToJson()
 {
     WebClient myWebClient = new WebClient();
     output1 = outputFilePath + "\\Batch" + currBatch;
     reloutput1 = "\\Batch" + currBatch;
     Stream data = myWebClient.OpenRead(batchurl);
     StreamReader reader = new StreamReader(data);
     string s = reader.ReadToEnd();
     JObject jobj = JObject.Parse(s);
     RootObject ro = new RootObject();
     if ((String)jobj["next"] != null)
     {
         ro.next = (String)jobj["next"];
         ro.local_next = "\\Batch" + (currBatch + 1) + ".json";
     }
     if ((String)jobj["previous"] != null)
     {
         ro.previous = (String)jobj["previous"];
         ro.local_previous = "\\Batch" + (currBatch - 1) + ".json";
     }
     ro.batches = new List<Batch>();
     JArray parseArray = (JArray)jobj["batches"];
     foreach (JObject bobj in parseArray) //parsing only necessary fields here to avoid redundancy in data
     {
         Batch b = new Batch();
         Awardee a = new Awardee();
         JObject temp = (JObject)bobj["awardee"];
         a.name = (String)temp["name"];
         a.url = (String)temp["url"];
         b.awardee = a;
         b.ingested = (String)bobj["ingested"];
         JArray temp2 = (JArray)bobj["lccns"];
         b.lccns = temp2.Select(jv => (string)jv).ToList();
         b.name = (String)bobj["name"];
         b.page_count = (int)bobj["page_count"];
         b.url = (String)bobj["url"];
         b.local_url = reloutput1 + "." + (b.name) + ".json";
         ro.batches.Add(b);
     }
     String output = JsonConvert.SerializeObject(ro, Formatting.Indented);
     file = new System.IO.StreamWriter(outputFilePath + "\\Batch" + currBatch + ".json");
     file.WriteLine(output);
     file.Close();
     ParseJBatch(parseArray); //parsing all the information in a batch
 }