| JsonTypes.STRING,
"color",
JsonTypes.STRING)));
assertEquals("Key order in Map should not matter while serializing/deserializing",
data,
outOfOrderSerializer.toObject(getSerializer(typeSig).toBytes(data)));
outOfOrderSerializer = new JsonTypeSerializer(new JsonTypeDefinition(ImmutableMap.of("color",
JsonTypes.STRING,
"name",
JsonTypes.STRING,
|