Unable to serialize JSON object from MongoDB in python
问题 I have the following JSON stored in my MongoDB: { "_id" : ObjectId("54fed786265e7f01d66ca778"), "id" : "http://some.site.somewhere/entry-schema#", "schema" : "http://json-schema.org/draft-04/schema#", "description" : "schema for an fstab entry", "type" : "object", "required" : [ "storage" ], "properties" : { "storage" : { "type" : "object", "oneOf" : [ DBRef("#/definitions/diskDevice", 1), DBRef("#/definitions/diskUUID", 2), DBRef("#/definitions/nfs", 3), DBRef("#/definitions/tmpfs", 4) ] } }