Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

do you know any database design software supporting embedded documents (MongoDB)?

I am trying to design a database schema for MongoDB but would like to be able to intuitively represent embedded documents. A bit like this:

http://www.mongodb.org/download/attachments/131465/reference.jpg?version=1&modificationDate=1253899724083

Does anyone know some software that lets me do this? I know I can do it on paper but I want to be able to share the schema with colleagues and have them edit small things.

like image 954
lmirosevic Avatar asked Nov 04 '22 14:11

lmirosevic


1 Answers

Check out JSON Designer for creating JSON modelling diagrams. You could also consider using the JSON Schema format as a way to represent and share you Mongo document schema.

like image 60
Chris Fulstow Avatar answered Nov 15 '22 06:11

Chris Fulstow