I tried many ways but not sure why this error coming. This is small script I am trying on SPYDER. Please help.
import json
myjson = '''
[
   "details":[
      {
         "MyTable":"NEWTABLE",
         "ReferTo":"Test"
      },
   ]
]
'''
data = json.loads(myjson)  
###  ABOVE LINE IS THROWING ERROR, --->  Expecting ',' delimiter
 
     
     
    