How to import this Json data as a flat object rather than a nested object
I have a json file, its content is: { "PID": [ 18988, 23928, 16656 ], "Process": [ "pwsh.exe", "pwsh.exe", "WindowsTerminal.exe" ], "WinID": [ "0x1117b6", "0x130042", "0x600848" ] } I want to import it as a PsCustom object, I have tried…