Hi I'd like to be able to support the following scenario:
curl -XPOST -H"Content-Type: application/json" http://localhost:5984/uta -d '{"_id": null, "_rev":null,"x":"y"}' Which returns: {"error":"bad_request","reason":"Document id must be a string"} I'd like the above to work the same as this command: curl -XPOST -H"Content-Type: application/json" http://localhost:5984/uta -d '{"x":"y"}' which returns: {"ok":true,"id":"c9fd97f3eb58fdb62ef7a80440001662","rev":"1-935564bc7ec7e86aa82ecec3face18f6"} Is there a reason why couchdb doesn't do the same action on a null _id/_rev as it does when the fields aren't present? Regards John
