Open
Description
The following event json data is not properly preserved after submission:
{
"type": "log",
"source": "custom_json_string",
"message": "custom json string",
"data": {
"custom_json_string": "{\"Age\":20,\"Height\":72,\"Attributes\":{\"Values\": [],\"Happy\": true},\"Qualified\":true}"
}
}
When the value comes back it looks like this
{
"Attributes": {
"Happy": true,
"Values": []
},
"Height": 72,
"Qualified": true,
"Age": 20
}