2 مستودعات
Systems that enforce structural rules and data type constraints on database documents.
Distinct from MongoDB Connectors: The candidates focus on data ingestion and connectivity (Connectors/Exporters), not the validation logic of the data models themselves.
Explore 2 awesome GitHub repositories matching data & databases · Schema Validators. Refine with filters or upvote what's useful.
Mongoose is an object data modeling library and framework for Node.js that maps application objects to MongoDB documents. It functions as a document mapper and schema validator, ensuring consistent data types and validation rules for records stored in MongoDB. The project provides a system for defining structured schemas to model application data, including the ability to create hierarchical data structures through nested schema composition. It implements a middleware-based hook system that allows for the interception and modification of data states during the lifecycle of database operations
Ensures consistent data types and validation rules for all records stored in MongoDB.
Objection.js is an object-relational mapper for Node.js that maps SQL database tables to classes and rows to model instances. It functions as a high-level abstraction layer built on top of the Knex.js query builder to provide structured model definitions and relational data mapping. The project distinguishes itself through its ability to manage complex object graphs, allowing for the persistence and eager-loading of deeply nested related data in single operations. It incorporates a data integrity layer that uses JSON schema validation to verify model instances before they are persisted to the
Enforces structural rules and data type constraints on database documents using JSON schema validation.