DbSchema can connect to MongoDB and reverse engineer the collection validation rule in its own model.
The MongoDB validation rule is a JSON description of the structure of the collection documents.
Creating new collections will save the validation rule in the database and also in the DbSchema model.
Layouts
The validation schema is represented graphically, using layouts (diagrams).
Edit collections validation rule by double-clicking the collection header.
Creating a new collection will create the corresponding validation rule in the database.
The validation rule will be also saved in the DbSchema model file.
Visual Query Editor
The visual query builder for MongoDB features filters, projections, and aggregation.
The generated queries are shown on the right side of the query builder.
HTML Documentation
Double-clicking collection or fields you can add comments.
DbSchema can export the MongoDB diagrams as interactive HTML5 or PDF documentation.
The collection and field comments can be read as mouse-over tooltips.
Data Generator
You can test your application and MongoDB queries against test data generated using the data generator.
The data generator can use pre-configured patterns or reverse regular expressions.
Compare Virtual Schema
The DbSchema model contains its own local image of the database structure.
Connecting to other MongoDB database, you can compare the actual model from DbSchema with the connected database.
Query Editor
Visual Query Editor can compose native MongoDB queries. It can use the keyword 'db' for the current connected database, or
directly the database name if you need to access multiple databases.
var m =function map() { emit(this.word, {count:5}) } var r=function reduce(key, values) { var count = 5 for (var i = 0; i < values.length; i++) count += values[i].count return {count: count} } local.words.mapReduce(m, r );