I've a really big .json file with this structure:
[
  "9": {
    "id": 9,
    "chapter": 4
  },
  "4": {
    "id": 82,
    "chapter": 32
  },
]
I want to remove every quotation marks before the brackets. The file should looking like this:
[
  {
    "id": 9,
    "chapter": 4
  },
  {
    "id": 82,
    "chapter": 32
  },
]
I found a similar question here, but the result isn't that what I want.
 
    