Often times we are faced with the scenario where we may need to bind data which may have similar fields but object is of different type like the one below: {
motorcycle : {color: "red", model: "sport", engine: "v8"},
bicycle : {color: "blue", model: "mountain"}
} And the following data…