Parse and map sample json {"name":"Raju", "dept":"R&D"} fetch name and dept After parsing provided json I found that name:Raju and dept:R&D Parse and map sample json from source object {"student":[ {"name":"Raju", "standred":"MCA"},{"name":"Sumeet", "standred":"MCA"}]} map student info to provided employee info and dept After parsing provided json I found that {"employee":[ {"emp_name":"Raju", "dept":"MCA"},{"emp_name":"Sumeet", "dept":"MCA"}]}