using Newtonsoft.Json.Linq; namespace AssetBank.Editor.SchemaConverter.Data.Input { /// /// Represents a single node from the original, flat JSON array. /// public class OriginalNode { public string type_id; public string anchor_id; public JObject data; } }