How to copy objects of one array of a JSON file to an array of another JSON file using PowerShell? For example, I have one JSON file, for example:
"type": "Employee", "Properties": [ { "Name": "Raj", "Id": "18111", "email": "emp1@company.com", "Position": "Manager", "DateOfJoining": "16.10.14", } ], "Description": "Employee details"
and another JSON file:
"type": "Employee", "Properties": [ { "Name": "Ram", "Id": "44000", "email": "emp2@company.com", "Position": "Admin", "DateOfJoining": "10.12.14", }, { "Name": "Paul", "Id": "44002", "email": "emp3@company.com", "Position": "Programmer", "DateOfJoining": "10.9.14", }, ], "Description": "Employee details"
I want to copy arrays from the 1st JSON file to the second JSON file.
json powershell
RS
source share