﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
19632	[PATCH] Try to convert keys to json values prior to saving	taylor.smock	team	"{{{
#!json
{
    ""type"": ""FeatureCollection"",
    ""generator"": ""JOSM"",
    ""features"": [
        {
            ""type"": ""Feature"",
            ""properties"": {
                ""array"": ""[\""obj1\"", \""obj2\""]"",
                ""dict"": ""{""\key1\"": \""value1\""}""
            },
            ""geometry"": {
                ""type"": ""Point"",
                ""coordinates"": [
                    0,
                    0
                ]
            }
        }
    ]
}
}}}

vs.
{{{
#!json
{
    ""type"": ""FeatureCollection"",
    ""generator"": ""JOSM"",
    ""features"": [
        {
            ""type"": ""Feature"",
            ""properties"": {
                ""array"": [""obj1"", ""obj2""],
                ""dict"": {""key1"": ""value1""}
            },
            ""geometry"": {
                ""type"": ""Point"",
                ""coordinates"": [
                    0,
                    0
                ]
            }
        }
    ]
}
}}}"	enhancement	new	normal		Core				
