using System.Collections.Generic;
static void Main(string[] args)
string filetext = File.ReadAllText("E:\\Full.json");
InputModel inputModel = new InputModel();
inputModel.records = JsonConvert.DeserializeObject<List<InputModelDetail>>(filetext);
OutputModel model = new OutputModel();
var records_groupby_pathidparents = inputModel.records.Where(x => x.pathIdParent != null).GroupBy(x => x.pathIdParent).Select(x => x.FirstOrDefault()).ToList();
foreach (var records_groupby_pathidparent in records_groupby_pathidparents)
OutputModel_level1 level1 = new OutputModel_level1();
level1.pathidparent = Convert.ToString(records_groupby_pathidparent.pathIdParent);
var records_pathids = inputModel.records.Where(x => x.pathIdParent == records_groupby_pathidparent.pathIdParent).GroupBy(x => x.pathId).Select(x => x.FirstOrDefault()).ToList();
foreach (var records_pathid in records_pathids)
OutputModel_level2 level2 = new OutputModel_level2();
level2.pathid = Convert.ToString(records_pathid.pathId);
var records_containers = inputModel.records.Where(x => x.pathIdParent == records_groupby_pathidparent.pathIdParent && x.pathId == records_pathid.pathId).GroupBy(x => x.pathDesc).Select(x => x.FirstOrDefault()).ToList();
foreach (var records_container in records_containers)
OutputModel_level3 level3 = new OutputModel_level3();
level3.container = records_container.pathDesc;
var records_params = inputModel.records.Where(x => x.pathIdParent == records_groupby_pathidparent.pathIdParent
&& x.pathId == records_pathid.pathId
&& x.pathDesc == records_container.pathDesc
).GroupBy(x => x.paramId).Select(x => x.FirstOrDefault()).ToList();
foreach (var records_param in records_params)
OutputModel_level4 level4 = new OutputModel_level4();
level4.paramid = Convert.ToString(records_param.paramId);
level4.pathid = Convert.ToString(records_container.pathId);
level4.type = records_container.type;
if (level4.type == "numeric")
level4.min = Convert.ToString(records_container.spvMinValue);
level4.max = Convert.ToString(records_container.spvMaxValue);
level4.nom = Convert.ToString(records_container.spvNomValue);
level4.text = records_container.spvTxtValue;
level3.paramids.Add(level4);
level2.containers.Add(level3);
level1.pathids.Add(level2);
model.pathidparents.Add(level1);
string finaljson = JsonConvert.SerializeObject(model);
public List<OutputModel_level1> pathidparents { get; set; } = new List<OutputModel_level1>();
public class OutputModel_level1
public string pathidparent { get; set; }
public bool shouldexpand { get; set; }
public List<OutputModel_level2> pathids { get; set; } = new List<OutputModel_level2>();
public class OutputModel_level2
public string pathid { get; set; }
public bool shouldexpand { get; set; }
public List<OutputModel_level3> containers { get; set; } = new List<OutputModel_level3>();
public class OutputModel_level3
public string container { get; set; }
public bool shouldexpand { get; set; }
public List<OutputModel_level4> paramids { get; set; } = new List<OutputModel_level4>();
public class OutputModel_level4
public string paramid { get; set; }
public string paramtername { get; set; }
public string pathid { get; set; }
public string type { get; set; }
public string min { get; set; }
public string nom { get; set; }
public string max { get; set; }
public string text { get; set; }
public bool shouldexpand { get; set; }
public List<InputModelDetail> records { get; set; } = new List<InputModelDetail>();
public class InputModelDetail
public string path { get; set; }
public int pathId { get; set; }
public int templateId { get; set; }
public int? pathIdParent { get; set; }
public string pathDesc { get; set; }
public int pathLevel { get; set; }
public int childOrder { get; set; }
public int socId { get; set; }
public int? paramId { get; set; }
public int? paramOrder { get; set; }
public string paramDesc { get; set; }
public string uom { get; set; }
public string type { get; set; }
public string criteria { get; set; }
public int? typeId { get; set; }
public string spvTxtValue { get; set; }
public float? spvNomValue { get; set; }
public int? spvMinValue { get; set; }
public int? spvMaxValue { get; set; }
public string originalTxtValue { get; set; }
public float? originalNomValue { get; set; }
public int? originalMinValue { get; set; }
public int? originalMaxValue { get; set; }
public string originalPmode { get; set; }
public int? paramCopyId { get; set; }
public int? stpPrecision { get; set; }
public string stpPmode { get; set; }
public string stpCategory { get; set; }
public string pathOrderBy { get; set; }
public string childLayout { get; set; }
public bool childIsSingle { get; set; }
public bool hidden { get; set; }
public string parameterName { get; set; }
public string extruder { get; set; }
public int? compNum { get; set; }
public bool? scdWritten { get; set; }
public string stpSelCriteria { get; set; }