I am confuse now why I am not able to parse this JSON string. Similar code works fine on other JSON string but not on this one - I am trying to parse JSON String and extract
Try replacing j = json.loads(json.dumps(jsonStr)) with j = json.loads(jsonStr).
j = json.loads(json.dumps(jsonStr))
j = json.loads(jsonStr)