I have a JSON file from an API that I need to parse, however, I need to get the values of the expHistory. I have tried using double parse but all that does is return an error. A sample of the JSON file is:
"members": [{
    "uuid": "7a6885b0594148a0be32f713aa1e34b5",
    "rank": "Guild Master",
    "joined": 1516748711264,
    "quest_participation": 1632,
    "exp_history": {
      "2020-10-14": 0,
      "2020-10-13": 35262,
      "2020-10-12": 21614,
      "2020-10-11": 32067,
      "2020-10-10": 0,
      "2020-10-09": 14544,
      "2020-10-08": 4095
    },
    "muted_till": null
  },
 
     
    