I’ve always learned that in ColdFusion 9+ that dot notation and implicit structs will always convert the key into uppercase when returning it as a JSON string.
To get around this you would always use bracket notation.
However I learned today, by example, that if you enclose the defined key, in an implicit struct, inside quotes that the key case will be preserved.
// DOES NOT PRESERVE CASE // returns: {"MYKEY":"myValue"} myStruct.myKey = "myValue"; return myStruct; // returns:Â {"MYKEY":"myValue"} myStruct = { myKey = 'myValue '}; return myStruct; // PRESERVES CASE // returns: {"myKey":"myValue"} myStruct[ "myKey" ] = "myValue"; return myStruct; // returns:Â {"myKey":"myValue"} myStruct = { 'myKey' = 'myValue '}; return myStruct;