awesome-repositories.com
Blog
MCP
awesome-repositories.com

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-Source-AlternativenSelf-hosted SoftwareBlogSitemap
ProjektMCP-ServerÜber unsRanking-MethodikPresse
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

14 Repos

Awesome GitHub RepositoriesSchema-Driven Validations

Automatically generates validation rules for presence, type, length, and uniqueness from database table constraints and indexes.

Distinct from Data Validation Schemas: Distinct from Data Validation Schemas: derives validations from live database schema metadata rather than from manually defined schema files or type definitions.

Explore 14 awesome GitHub repositories matching software engineering & architecture · Schema-Driven Validations. Refine with filters or upvote what's useful.

Awesome Schema-Driven Validations GitHub Repositories

Finde die besten Repos mit KI.Wir suchen mit KI nach den am besten passenden Repositories.
  • markdoc/markdocAvatar von markdoc

    markdoc/markdoc

    8,060Auf GitHub ansehen↗

    Markdoc is a documentation content framework that extends standard Markdown with custom tags, typed schemas, and reusable components, parsing content into an abstract syntax tree and rendering it as React elements or HTML. It provides a structured authoring system where documents are processed through an AST-based pipeline, enabling validation, transformation, and flexible output generation. The framework distinguishes itself through a schema-driven validation pipeline that checks document structure and attribute values against defined rules, and a pluggable renderer architecture that accepts

    Checks document structure and attribute values against defined schemas during transformation to catch errors before rendering.

    TypeScriptauthoringdocumentationmarkdoc
    Auf GitHub ansehen↗8,060
  • reconurge/flowsintAvatar von reconurge

    reconurge/flowsint

    6,979Auf GitHub ansehen↗

    Flowsint is an open-source intelligence framework and reconnaissance orchestrator used for cybersecurity investigations. It functions as a containerized tool runner and data mapper, automating the collection of intelligence from open-source providers and APIs to profile targets and map threat intelligence. The platform distinguishes itself through a graph-based investigation interface, where processed raw intelligence is converted into nodes and edges to visualize relationships between entities. It allows for the creation of sequenced pipelines that chain data enrichment tools, enabling the o

    Enforces data formats and constraints using schema-driven validations during entity serialization.

    TypeScriptinvestigationosintpython
    Auf GitHub ansehen↗6,979
  • express-validator/express-validatorAvatar von express-validator

    express-validator/express-validator

    6,238Auf GitHub ansehen↗

    express-validator is a server-side input validation library designed specifically for Express.js applications. It provides middleware that validates and sanitizes incoming HTTP request data against developer-defined rules, collecting all validation failures into a single array for simultaneous error reporting rather than failing on the first error. The library offers a chainable validation API where rules are built by chaining methods on a validation chain object, enabling declarative specification of multiple validators and sanitizers for a single request field. Each validation chain operate

    Validation rules are defined declaratively using a schema object mapping field names to validation and sanitization configurations.

    TypeScriptexpressexpressjsjavascript
    Auf GitHub ansehen↗6,238
  • goadesign/goaAvatar von goadesign

    goadesign/goa

    6,084Auf GitHub ansehen↗

    Goa is a design-first Go framework that generates server and client code, documentation, and request validation from a single declarative domain-specific language (DSL). At its core, it provides a Go DSL for defining API endpoints, data types, and error models, which compiles into fully functional HTTP and gRPC server stubs, client packages, and OpenAPI specifications. The framework distinguishes itself through its plugin-extensible code generation pipeline, allowing custom code generation steps, middleware, or transport layers to be added via plugins. It supports multiple transport protocols

    Validates incoming requests automatically against the DSL-defined schema before reaching handler logic.

    Go
    Auf GitHub ansehen↗6,084
  • tonsky/datascriptAvatar von tonsky

    tonsky/datascript

    5,767Auf GitHub ansehen↗

    Datascript ist ein unveränderlicher (immutable) In-Memory-Zustandsspeicher und ein schemabasierter Triple-Store. Es verwaltet den Anwendungszustand als versionierte Datenbank und speichert Daten als unveränderliche Fakten, die aus Entität, Attribut, Wert und Transaktion bestehen. Das Projekt bietet eine Logik-Engine zur Ausführung von Datalog-Abfragen mit Unterstützung für implizite Joins, rekursive Regeln und Negation. Es verfügt zudem über eine deklarative Pull-API zum Abrufen tief verschachtelter Entitätsgraphen und zugehöriger Datenstrukturen. Die Datenbank erzwingt Datenintegrität durch schemagesteuerte Einschränkungen und Attributtypen. Sie unterstützt atomare Transaktionen, erweiterbare Speicherprotokolle für Persistenz sowie B-Baum-Attributindizierung zur Optimierung von Suchvorgängen. Das System ist für den Einsatz in Clojure-, ClojureScript- und JavaScript-Umgebungen konzipiert.

    Validates data integrity and optimizes indexing by applying attribute types and uniqueness rules during transactions.

    Clojure
    Auf GitHub ansehen↗5,767
  • katanaml/sparrowAvatar von katanaml

    katanaml/sparrow

    5,162Auf GitHub ansehen↗

    Sparrow ist eine LLM-Plattform zur Dokumentenextraktion und eine vision-basierte Inferenz-Engine, die darauf ausgelegt ist, Bilder und PDFs in validierte, strukturierte Daten umzuwandeln. Sie fungiert als agentischer Workflow-Orchestrator, der Klassifizierungs-, Extraktions- und Validierungsaufgaben in mehrstufige Pipelines verkettet. Das System zeichnet sich durch eine Backend-agnostische Inferenzschicht aus, die Modelle über lokale GPUs, Apple Silicon und Cloud-Anbieter hinweg verwaltet. Es nutzt koordinatenbasiertes Visual Grounding, um extrahierten Text präzisen Bounding-Box-Koordinaten zuzuordnen, und verwendet hinweisgesteuerte Modellsteuerung, um die Aufmerksamkeit zu lenken und Datenformate zu normalisieren. Die Plattform deckt Workflows für Dokumentenintelligenz ab, einschließlich spezialisierter bildbasierter Tabellenverarbeitung zur Wahrung der strukturellen Integrität sowie schema-basierter Validierung zur Überprüfung der Korrektheit extrahierter Felder. Zudem bietet sie ein Dashboard zur Dokumentenanalyse für das Monitoring von API-Performance, Nutzungsstatistiken und Systemzustand. Die Architektur umfasst ein Plugin-basiertes Erweiterungssystem zur Integration von Drittanbieter-Bibliotheken für Indizierung und Orchestrierung.

    Verifies extracted document fields against predefined structural definitions to ensure data correctness.

    Pythonagentic-aicomputer-visiondocumentai
    Auf GitHub ansehen↗5,162
  • jeremyevans/sequelAvatar von jeremyevans

    jeremyevans/sequel

    5,076Auf GitHub ansehen↗

    Sequel is a relational database toolkit for Ruby that provides object-relational mapping, a fluent SQL query builder, and schema migration capabilities. It maps database tables to Ruby classes with support for associations, validations, lifecycle hooks, and eager loading, offering a comprehensive ORM layer for building data-centric applications. Sequel distinguishes itself through a plugin-based extension architecture that allows composable customization of models, databases, and datasets without relying on deep inheritance hierarchies. It includes a thread-safe connection pool with support f

    Sequel automatically creates presence, type, length, and uniqueness validations based on table constraints and indexes.

    Ruby
    Auf GitHub ansehen↗5,076
  • middleapi/orpcAvatar von middleapi

    middleapi/orpc

    4,862Auf GitHub ansehen↗

    orpc is a contract-first API development framework for TypeScript that starts with a shared contract definition and generates type-safe clients and servers from that single source of truth. It guarantees end-to-end type safety, meaning inputs, outputs, errors, and streaming data are all checked at compile time across the client–server boundary. What distinguishes orpc from typical RPC frameworks is its ability to export contracts as OpenAPI specifications, to optimize server-side rendering by calling API handlers directly inside the server process, and to support real‑time bidirectional commu

    Input and output data is validated at runtime using Zod, Valibot, or ArkType schemas declared in the contract.

    TypeScriptapibunjscloudflare-worker
    Auf GitHub ansehen↗4,862
  • bufbuild/protoc-gen-validateAvatar von bufbuild

    bufbuild/protoc-gen-validate

    4,122Auf GitHub ansehen↗

    Dieses Projekt ist ein Protocol-Buffer-Validierungs-Plugin und Code-Generator, der konsistente Validierungslogik über mehrere Programmiersprachen hinweg erstellt. Es fungiert als Compiler-Erweiterung für die Protocol-Buffer-Toolchain und ermöglicht es Entwicklern, semantische Constraints direkt in Schema-Dateien zu definieren, um Datenkonsistenz sicherzustellen. Das Tool verwendet benutzerdefinierte Optionen, um Validierungsregeln in Nachrichtendefinitionen einzubetten und diese Schema-Constraints auf sprachspezifische Implementierungsmuster zu mappen. Es nutzt prädikatbasierte Constraint-Prüfung und rekursive Traversierung, um Regeln über verschachtelte Nachrichtenhierarchien hinweg durchzusetzen. Die Validierung umfasst numerische Bereiche und Werte, String-Muster und -Formate, Byte-Sequenz-Constraints sowie Enum-Durchsetzung. Zudem verwaltet es Sammlungen und Größen wiederholter Felder, komplexe Typvalidierung für Zeitstempel und Zeitdauern sowie Anforderungen für die Auswahl von Union-Feldern.

    Injects validation rules into generated data accessors by parsing semantic metadata from input descriptor files.

    Goconstraintsprotocprotoc-plugin
    Auf GitHub ansehen↗4,122
  • github/octodnsAvatar von github

    github/octodns

    3,719Auf GitHub ansehen↗

    OctoDNS is a multi-provider DNS management tool and abstraction layer that synchronizes DNS zone files across multiple service providers using a single unified configuration format. It functions as a stateless record synchronizer that calculates differences between a local configuration and the remote provider state to reconcile DNS records. The system employs a translation framework to map various provider-specific DNS schemas into a common internal representation. This allows for the administration of network naming and routing across different cloud platforms and service providers from a s

    Ensures DNS records adhere to provider requirements and standard DNS rules before synchronization.

    Python
    Auf GitHub ansehen↗3,719
  • kubernetes-sigs/kroAvatar von kubernetes-sigs

    kubernetes-sigs/kro

    2,928Auf GitHub ansehen↗

    kro is a Kubernetes resource orchestrator and API abstraction layer that enables the definition of simplified custom API surfaces. It allows users to map high-level inputs to complex templates of underlying Kubernetes objects, effectively grouping interdependent resources into single, manageable units. The project differentiates itself by automating the generation of custom resource definitions and dedicated controllers from resource graph specifications without requiring manual Go code. It employs a dependency manager that uses directed acyclic graphs to coordinate the creation, readiness, a

    Performs static analysis and type checking of expressions against OpenAPI schemas to ensure API stability.

    Gok8s-sig-cloud-provider
    Auf GitHub ansehen↗2,928
  • dry-rb/dry-validationAvatar von dry-rb

    dry-rb/dry-validation

    1,422Auf GitHub ansehen↗

    Dry-validation ist eine Ruby-Bibliothek, die für die Definition typsicherer Schemata und komplexer Validierungsregeln zur Überprüfung und Bereinigung von Eingabedatenstrukturen entwickelt wurde. Sie bietet ein formales Framework zur Konstruktion modularer Validierungslogik und stellt sicher, dass eingehende Informationen spezifische Geschäftsanforderungen und Datenformate erfüllen, bevor sie von einer Anwendung verarbeitet werden. Die Bibliothek nutzt eine domänenspezifische Sprache (DSL), um Validierungsregeln zu deklarieren, die dann in ausführbare Objekte geparst werden. Sie zeichnet sich durch ein Makro-gesteuertes System aus, das gängige Validierungslogik in wiederverwendbare Shortcuts bündelt, sowie durch ein rekursives Kompositionsmodell, das es Entwicklern ermöglicht, Validierungsobjekte zu verschachteln, um komplexe, hierarchische Strukturen aufzubauen. Dieser Ansatz ermöglicht die Erstellung konsistenter, modularer Logik, die Codeduplizierung in großen Anwendungen verhindert. Über die Kern-Schema-Definition hinaus enthält die Bibliothek eine Typ-Coercion-Pipeline, die rohe Eingaben in erwartete Formate umwandelt, sowie ein strukturiertes Fehleraggregationssystem, das Fehler auf spezifische Eingabepfade abbildet. Sie unterstützt Konfigurations-Hooks für die Integration externer Abhängigkeiten und bietet Tools zur Datenbereinigung, was sie für die Durchsetzung von Standards bei eingehenden API-Requests und komplexen Datenobjekten geeignet macht.

    Provides a domain-specific language to declare validation rules and data structures that are parsed into executable objects.

    Rubycoerciondata-validationdry-rb
    Auf GitHub ansehen↗1,422
  • foxhound87/mobx-react-formAvatar von foxhound87

    foxhound87/mobx-react-form

    1,095Auf GitHub ansehen↗

    Dieses Projekt ist eine reaktive State-Management-Bibliothek für den Umgang mit komplexen Formulardaten und Validierungslogik. Sie nutzt beobachterbasierte Muster, um UI-Komponenten mit zugrunde liegenden Datenmodellen zu synchronisieren und sicherzustellen, dass Formularzustände während der gesamten Anwendung konsistent bleiben. Die Bibliothek bietet einen strukturierten Ansatz zur Verwaltung von Formularinitialisierung, Feldverfolgung und Lebenszyklusereignissen. Die Bibliothek zeichnet sich durch ihre Unterstützung für tief verschachtelte Datenstrukturen und hierarchische Komposition aus, was rekursive Validierung und dynamische Updates innerhalb komplexer Objektbäume ermöglicht. Sie verfügt über eine schema-gesteuerte Validierungs-Engine, die sowohl synchrone als auch asynchrone Regeln unterstützt, neben einer Middleware-artigen Abfangfunktion, die es ermöglicht, Daten während Feld-Updates zu überwachen oder zu transformieren. Entwickler können spezifische Felder dynamisch über pfadbasierte Adressierung aufrufen und manipulieren, was Flexibilität bei der Arbeit mit großen oder sich entwickelnden Formularmodellen bietet. Über das Kern-State-Management hinaus enthält die Bibliothek Dienstprogramme für Datentransformation, wie das Formatieren von Eingabewerten und das Berechnen von Feldwerten basierend auf anderen Formulardaten. Sie bietet Multi-Formular-Orchestrierungsfunktionen zur Koordination von Validierung und Übermittlung über mehrere Instanzen hinweg und bleibt von spezifischen Präsentationsschichten entkoppelt, um die Integration mit jeder UI-Komponentenbibliothek zu ermöglichen. Das Framework bietet zudem integrierte Tools zur Überwachung von Feld-Lebenszyklusereignissen und zum Debuggen interner Zustandsübergänge.

    Executes synchronous or asynchronous rules against field values to enforce data integrity and manage error visibility states.

    TypeScriptformmobxobservables
    Auf GitHub ansehen↗1,095
  • iconify/icon-setsAvatar von iconify

    iconify/icon-sets

    938Auf GitHub ansehen↗

    Icon-sets is a repository and toolkit for aggregating, optimizing, and managing open-source vector icon collections. It functions as an SVG icon collection manager, vector icon library, and processing utility that organizes design assets into standardized JSON data structures and graphic files. The project provides comprehensive capabilities for icon import, export, processing, and rendering. Imported vector graphics undergo schema-driven validation, security sanitization, and format standardization alongside geometric transformations such as scaling, rotation, and flipping. Alias-based data

    Inspects and validates incoming icon data structures against strict definitions to ensure integrity and correct common structural errors.

    TypeScript
    Auf GitHub ansehen↗938
  1. Home
  2. Software Engineering & Architecture
  3. Data Validation Schemas
  4. Schema-Driven Validations

Unter-Tags erkunden

  • Collection Parsing SchemasInspects and validates incoming icon data structures against strict definitions to ensure integrity and correct common structural errors. **Distinct from Schema-Driven Validations:** Distinct from Schema-Driven Validations: focuses on schema validation tailored specifically to icon collection data structures rather than generic database table constraints.
  • Constraint InjectionThe process of injecting validation rules into generated code based on schema metadata. **Distinct from Schema-Driven Validations:** Distinct from Schema-Driven Validations: focuses on the act of injecting rules into generated accessors, not deriving them from database tables.
  • DNS Record ValidationsValidation rules ensuring DNS records meet provider-specific and standard DNS specifications. **Distinct from Schema-Driven Validations:** Focuses on DNS record compliance rather than database table constraints
  • DSL-Driven ValidationsValidation rules automatically derived from a domain-specific language definition rather than database schemas. **Distinct from Schema-Driven Validations:** Distinct from Schema-Driven Validations: derives validation rules from a DSL, not from database table constraints.
  • Privacy Masking SchemasAutomatic application of privacy transformers based on database schema analysis. **Distinct from Schema-Driven Validations:** Focuses on privacy-preserving masking rather than general data validation rules