mongodb-ejson-schema

a mongodb extended json schema

Usage no npm install needed!

<script type="module">
  import mongodbEjsonSchema from 'https://cdn.skypack.dev/mongodb-ejson-schema';
</script>

README

mongodb-ejson-schema

MongoDB Extended JSON is a standard way of representing MongoDB documents in JSON. This provides a JSON Schema to validate documents.

why

If you're talking between services in JSON (like to a browser, or producing/consuming mongoexport), you should strictly adhere to this JSON Schema.

This provides an easy way to verify your documents are valid.

It also serves as documentation for what the MongoDB Extended JSON format looks like.

schema/document.json

This is the schema for a document, e.g. something you can store in MongoDB.

schema/query.json

**TODO** implement this schema

This is the schema for a query document. This allows for additional field values, e.g. $set.

LICENSE

MIT