The following event json data is not properly preserved after submission: ```json { "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 ```json { "Attributes": { "Happy": true, "Values": [] }, "Height": 72, "Qualified": true, "Age": 20 } ```