In my Mongoose schema, I have a field which is a String, and I want to be able to store an JSON object in it. Is it possible? In Postgres, it\'s possible to store a dictionary i
if you can change the type of your field form "String" to "Object" you can save the json as it is.
var schema_obj = new Schema({ field1: Object, .. });