I am trying to modify existing json in sql and adding a new property in each object in array.
My json is as given below
{"Key":"Employee", "Data":[{"id": "1", "value": "Vogel"},{ "id": "2", "value": "Vogel"}]
Now I am trying to add a new property in each object inside Data property(Like IsDeleted :False
).
Can we iterate each object inside a particular property which is an array in itself and add property in each object.