I can easily decode the keys that are Camel Case:
struct TheData: Codable {
    let theNumber: Float
}
But I can not decode this version:
struct TheData: Codable {
    let TheNumber: Float
}
"TheNumber" is with first letter capitalized and Swift does allow constants starting with capital case. I have tried to lower case the first letter but it didn't work.
 
    