Skip to main content

Spawn MongoDB resources from JSON Schema

Project description

mongospawn is a tool to help spawn MongoDB resources given JSON Schema specifications.

The primary near-term use case is support for the National Microbiome Data Collaborative (NMDC) pilot project. In particular, given a JSON Schema with all array-typed properties and with each array item a $ref reference to one of the JSON Schema definitions (see NMDC example), mongospawn can generate MongoDB $jsonSchema documents to apply as validators for collections in a database that correspond to each of the original JSON Schema's array-typed properties. MongoDB's implementation of JSON Schema does not support $ref, definitions, etc., so mongospawn expands references to generate appropriate per-collection schema documents.

In addition to generating derived schema documents, mongospawn can spawn new databases/collections, with schema validation set, via the pymongo driver, and can also manage access to the spawned resources via mongogrant.

Setup

For development:

pip install -e .[dev]

To update dependency versions:

make update

To use pinned dependencies for reproducible testing:

make

Usage

Example using NMDC's JSON Schema:

from mongospawn.schema import dbschema_from_file, collschemas_for
from pymongo import MongoClient

client = MongoClient()
db = client.nmdc_test

dbschema = dbschema_from_file("nmdc.schema.json")
collschemas = collschemas_for(dbschema)
for name in collschemas:
    db.drop_collection(name)
    db.create_collection(name, validator={"$jsonSchema": collschemas[name]})
    print(f"created {name} collection")
# created activity_set collection
# created biosample_set collection
# created data_object_set collection
# created omics_processing_set collection
# created study_set collection

Now, e.g. if you try to insert a non-conformant JSON document, a pymongo.errors.WriteError will be raised:

db.biosample_set.insert_one({"not_a_real_field": 1})
# => WriteError: Document failed validation...

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mongospawn-0.5.3.tar.gz (17.4 kB view details)

Uploaded Source

Built Distribution

mongospawn-0.5.3-py3-none-any.whl (4.6 kB view details)

Uploaded Python 3

File details

Details for the file mongospawn-0.5.3.tar.gz.

File metadata

  • Download URL: mongospawn-0.5.3.tar.gz
  • Upload date:
  • Size: 17.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for mongospawn-0.5.3.tar.gz
Algorithm Hash digest
SHA256 33d3bd61d9ffe694d815480dc2e1b62c23d50c9a07d63c28b525aa00fdae034e
MD5 0a06809dfe3897a95c6ccc888f26ec06
BLAKE2b-256 4ae4e8f4141d11d33fb58d452637bc1d9b36f282107d2b76d6603bfebb23d94b

See more details on using hashes here.

File details

Details for the file mongospawn-0.5.3-py3-none-any.whl.

File metadata

  • Download URL: mongospawn-0.5.3-py3-none-any.whl
  • Upload date:
  • Size: 4.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for mongospawn-0.5.3-py3-none-any.whl
Algorithm Hash digest
SHA256 ee6c98ea840b351ee08c3673ccb9b0216f505f0f46010b5a5a1ae5c8fc33ab9c
MD5 91ff63af9e13ede1ccdf18478b90a6c8
BLAKE2b-256 395c42f0afd297fbc87abda3a2144dca6028a9ce2920d54743a97d6a7af56d20

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page