12 repositorios
Defines standard document objects for content storage and display.
Distinguishing note: Focuses on the base document definition, distinct from document processing.
Explore 12 awesome GitHub repositories matching data & databases · Document Definitions. Refine with filters or upvote what's useful.
Slate is a customizable rich text editor framework that treats documents as a recursive tree of nodes. It functions as a schema-based, state-driven system designed to enforce structural constraints and manage nested components within a structured document model. The framework utilizes a plugin-based architecture to extend editor functionality, allowing for the injection of custom logic into the rendering and transformation pipeline. It supports real-time collaborative editing by synchronizing document operations across multiple users. The system covers a broad range of capabilities, includin
Enforces document layout rules by restricting which node types can be nested within other specific nodes.
This project is a reactive, offline-first NoSQL database engine designed for JavaScript applications. It provides a robust framework for managing application state by synchronizing data across browsers, mobile devices, and server-side runtimes. By treating local storage as the primary source of truth, it enables applications to remain functional without network connectivity, automatically reconciling changes with remote backends once a connection is restored. The database distinguishes itself through a modular architecture that supports cross-environment synchronization and high-performance d
Enforces data structure and validation rules for collections using standard definitions to ensure consistency across stored documents.
Ajv is a high-performance data validation framework that compiles JSON schemas into optimized, standalone JavaScript functions. By transforming declarative schema definitions into executable code, it eliminates runtime interpretation overhead and provides a secure, efficient way to enforce data integrity across both browser and server environments. The library distinguishes itself through its focus on performance and type safety. It employs advanced compilation techniques, including abstract syntax tree optimization and function caching, to ensure rapid validation. Beyond standard checks, it
Identifies and rejects ambiguous or erroneous schema definitions during compilation to prevent silent failures.
Convex is a serverless backend platform that provides a real-time reactive database, serverless functions, and state synchronization for web applications. It manages relational JSON documents using ACID-compliant transactions and schema validation to ensure data consistency and integrity. The platform distinguishes itself by synchronizing database state with clients via WebSockets, allowing user interfaces to update automatically as data changes. It also includes a specialized vector search database for performing semantic search using embeddings and supports both cloud-native deployment and
Enforces data integrity by validating JSON documents against predefined schemas before database commitment.
gqlgen is a schema-first Go library designed to build type-safe GraphQL servers. It functions as a code generation engine that transforms declarative GraphQL schema definitions into strongly-typed Go source code, ensuring strict alignment between the API contract and the underlying implementation. The framework distinguishes itself through its deep integration with the Go type system and its highly extensible build pipeline. By using schema-first development, it automates the creation of server boilerplate and resolver stubs, allowing developers to map schema fields directly to Go structs and
Overrides schema nullability rules at runtime to flag fields as required based on directive usage or middleware logic.
ProseMirror es un framework de editor de texto enriquecido y motor de edición colaborativa diseñado para construir editores de contenido semántico. Proporciona un kit de herramientas para crear interfaces de texto donde la estructura del documento se rige por un modelo declarativo basado en esquemas. El framework permite el desarrollo de editores que tratan el texto como datos estructurados en lugar de HTML simple, asegurando que el contenido del documento permanezca semánticamente consistente a través de un esquema estricto. Esta arquitectura admite la edición colaborativa en tiempo real para sincronizar los cambios del documento entre múltiples usuarios.
Enforces a strict structural schema to ensure document nodes and marks remain semantically consistent.
Defines source file formats for correct parsing and indexing during document ingestion.
AliSQL is a fork of MySQL by Alibaba that extends the relational database management system with enhancements for high performance, scalability, and enterprise-grade availability. It retains the core MySQL identity as a SQL-based database for storing, organizing, and retrieving structured data, while adding optimizations for large-scale transactional and analytical workloads. The project differentiates itself through a set of Alibaba-specific improvements, including a columnar engine for accelerating analytical queries directly on MySQL tables, and a distributed, shared-nothing NDB Cluster en
Enforces JSON schema validation on documents added to collections to ensure data consistency.
MongoEngine es un mapeador de objetos-documentos (ODM) para Python que traduce registros de base de datos en objetos para proporcionar una interfaz orientada a objetos para la persistencia de datos. Sirve como gestor de documentos y validador de esquemas para MongoDB, mapeando clases a documentos para imponer tipos de datos y reglas de validación. El proyecto proporciona un sistema de queryset de carga perezosa (lazy-loaded) para filtrar, ordenar y agregar colecciones utilizando sintaxis Pythonica. Gestiona estructuras de datos complejas a través de características como la herencia de documentos, el manejo recursivo de documentos incrustados y la vinculación de objetos basada en referencias. La librería cubre amplias capacidades, incluyendo migración de esquemas, búsqueda de texto completo y la gestión de archivos binarios grandes a través del sistema de archivos GridFS. También incluye herramientas para la optimización de índices de base de datos, perfilado del rendimiento de consultas y hooks de ciclo de vida basados en señales para automatizar la lógica durante los eventos de documentos.
Defines blueprints for collections through mapping classes to documents with specified fields and indexes.
RavenDB is a multi-model NoSQL document database designed for high-performance, ACID-compliant data storage. It persists structured information as schema-flexible JSON documents and utilizes a unit-of-work session pattern to track entity changes and batch modifications into atomic transactions. The platform is built on a distributed architecture that supports horizontal scaling through sharding and ensures high availability via multi-node, master-to-master cluster replication. The database distinguishes itself through a self-optimizing query engine that automatically creates and maintains ind
Validates document structure against defined rules during write operations to prevent malformed records.
Este proyecto es un componente de edición de texto enriquecido modular para aplicaciones React, construido sobre el framework ProseMirror. Proporciona una interfaz visual para componer y formatear contenido utilizando markdown, mientras mantiene un modelo de documento estructurado que se serializa de nuevo en código markdown limpio. El editor está diseñado para una alta extensibilidad, permitiendo a los desarrolladores inyectar comportamientos personalizados y comandos de formato a través de una arquitectura basada en plugins. Admite un control granular sobre el entorno de edición, incluida la capacidad de anular estilos predeterminados, localizar el texto de la interfaz y configurar comportamientos específicos como modos de solo lectura o límites de caracteres. El sistema incluye herramientas integrales para gestionar medios enriquecidos y contenido interactivo, con callbacks personalizados para cargas de archivos y la capacidad de reemplazar patrones de enlaces con componentes incrustados. También expone interfaces programáticas para la interacción con documentos, permitiendo a los desarrolladores extraer metadatos estructurales, gestionar el posicionamiento del cursor y sincronizar cambios de estado con capas de persistencia de datos externas.
Enforces document integrity and formatting rules using a strict schema-based node tree.
This project is a framework for building real-time collaborative rich-text editing environments. It provides a structured, schema-based engine that enforces document integrity while allowing multiple users to modify content simultaneously through synchronized state management and conflict resolution protocols. The editor distinguishes itself through a highly modular plugin architecture that supports the integration of complex, interactive UI components built with external frontend libraries. By utilizing a custom rendering engine and a versioned, immutable document state tree, it enables deve
Enforces structural constraints and nesting rules on document nodes to ensure consistent data formatting across collaborative sessions.