I have a string, which I retrieved as a nested JSON field from a Mongo database
"[{'actionId': '29df54c0-9f08-4231-8eb2-ca2457003f2d', 'actionName': 'Create a team', 'userActionStatus': 'COMPLETED', 'currentCount': 1, 'targetCount': 1, 'lastActionDate': datetime.datetime(2022, 6, 24, 14, 17, 17, 785000)}]"
I'm unable to parse the json with json.loads, as it's throwing a Expected value at column...
error. Which is caused by the datetime.datatime object
Any ideas on how to parse this?