using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NodeEditor { class ReadJSON { public Boolean validateJSON(string jsonString) { bool isValid = true; JObject json = JObject.Parse(jsonString); return isValid; } } }