I\'m pretty sure my model is correct based on my data, I cannot figure out why I am getting the format error?
JSON:
{ "1596193200":{ &qu
From the code you provided it looks like you are trying to decode an Array, but in the JSON the data is formatted as a Dictionary.
Array
Dictionary
You should try:
let call = try JsonDecoder().decode(Dictionary.self, from: data)