I'm presented with an output from a system that the documentation identifies as "JSON" but follows a different syntax. Keys with colons in them are prefixed with a colon, key/value is separated by "=>" instead of ":" and only string values are put into quotes, so it looks like:
{
:"key:name"=>NumericOrDateValue, 
:"key:name"=>"StringValue", 
"keyname"=>NumericOrDateValue, 
"keyname"=>"StringValue" }
Anyone recognize this syntax? Is there a library to convert it to normal JSON?
