Okay, so, I have something that looks like this:
[
{ "abc": "123",
"id": 9,
},
{ "azc": "153",
"id": 2,
},
{ "oau": "321",
"id": 9,
},
]
As you can see above, it can happen that the ID duplicates in the file I have, however, I'd like that if the ID is duplicated in two of these lists, one of the lists is deleted, and the other is kept.
Is it possible? I've been trying for way too long now.