Hi ismail,
You could manage this with a simple python script that would open the json file, for each line match it to what ever you are looking for. When a line does not match you write it into the file again. It would go something along this lines:
YOUR_SEARCH_STRING = whatever string you want to use to remove the json.
with open("archive.json", "r") as f: lines = f.readlines()
f: lines = f.readlines()
with open("archive.json", "w") as:
for line in lines:
if YOUR_SEARCH_STRING not in line:
f.write(line)
You can use a regex as your search string that can match whatever particular details you are looking for in the json file.
I hope this answers your question.
Cheers.