In an attempt to not waste time, I was hoping someone here could readily identify the data structure presented below and if so, could you please tell me what it's called and where I might find an existent parser?
CumulativeData = {
["UnitedStates"] = {
["California"] = {
[0] = {
"777",
},
["Flower"] = "Tulip",
["PoliticalAffiliation"] = 2,
["ZipCodes"] = {
[0] = "35415",
[1] = "54178",
[2] = "65214",
[3] = "58795",
},
},
["Wyoming"] = {
[0] = {
"888",
},
["Flower"] = "Rose",
["PoliticalAffiliation"] = 1,
["ZipCodes"] = {
[0] = "96325",
[1] = "14685",
[2] = "52365",
[3] = "85471",
},
},
},
}