I have a date (timestamp) passing through my JSON data that is not in iso8601 format. So, when I try to parse it I get a fatal error. I think I need to use some type of date formatting protocol but I am not sure. If you have dealt with this is the past, then please help. Thanks.
let json = """
{
"customers":[
{
"firstName" : "John",
"lastName" : "Smith",
"dateCreated" : "01/01/2019",
"address" : {
"street" : "1 street",
"city" : "myCity",
"state" : "myState",
}
}
]
}