awesome-repositories.com
Blog
awesome-repositories.com

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

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

6 Repos

Awesome GitHub RepositoriesDeep Property Validation

Checks for the existence or validity of nested data structures using pointers to reach deep object paths.

Distinct from Schema Validation Libraries: Focuses on deep path validation within schemas, distinct from general property validation.

Explore 6 awesome GitHub repositories matching data & databases · Deep Property Validation. Refine with filters or upvote what's useful.

Awesome Deep Property Validation GitHub Repositories

Finde die besten Repos mit KI.Wir suchen mit KI nach den am besten passenden Repositories.
  • ajv-validator/ajvAvatar von ajv-validator

    ajv-validator/ajv

    14,733Auf GitHub ansehen↗

    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

    Checks for the existence or validity of nested data structures using pointers to reach deep object paths.

    TypeScriptajvjson-schemavalidator
    Auf GitHub ansehen↗14,733
  • open-circle/valibotAvatar von open-circle

    open-circle/valibot

    8,769Auf GitHub ansehen↗

    Valibot is a modular, type-safe schema library for validating and parsing structural data in TypeScript environments.

    Allows missing object keys while forbidding explicit undefined values to ensure strict object shape integrity.

    TypeScriptbundle-sizemodularparsing
    Auf GitHub ansehen↗8,769
  • chaijs/chaiAvatar von chaijs

    chaijs/chai

    8,264Auf GitHub ansehen↗

    Chai is an assertion library for Node.js and browser-based JavaScript applications. It functions as both a behavior-driven development and test-driven development framework, providing a system to verify code outputs, application state, and general logic. The project is an extensible validation engine that uses a plugin-based system to allow the registration of custom assertions and specialized data checks. It supports multiple modular assertion styles to accommodate different validation philosophies. The library covers a broad range of data validation capabilities, including the inspection o

    Verifies the existence and value of deep properties using dot-notation strings to navigate complex hierarchies.

    JavaScript
    Auf GitHub ansehen↗8,264
  • larastan/larastanAvatar von larastan

    larastan/larastan

    6,430Auf GitHub ansehen↗

    Larastan is a static analysis extension and type inference engine for PHP designed to detect bugs and type errors in Laravel applications. It extends PHPStan to resolve framework-specific patterns and magic methods, providing a rule-based scanning engine to audit code quality without executing the application. The tool specializes in Eloquent analysis, verifying that model properties, casts, and relationships align with database schemas and migrations. It tracks types across Eloquent collections, custom builders, and model factories to ensure type safety during database operations and iterati

    Checks that strings used in model or builder methods correspond to actual database columns or properties.

    PHP
    Auf GitHub ansehen↗6,430
  • angus-c/justAvatar von angus-c

    angus-c/just

    6,204Auf GitHub ansehen↗

    Just is a collection of JavaScript utility libraries designed for data manipulation, functional programming, performance optimization, statistical analysis, and string processing. It provides a set of tools for deep cloning, filtering, and transforming complex objects and arrays. The project is structured as a series of zero-dependency modules, allowing utilities to be used independently to minimize bundle size. It implements functional programming patterns including currying, piping, and partial application, and provides execution control through memoization, debouncing, and throttling. The

    Provides a mechanism to check for the presence of keys at specific nested paths within data structures.

    JavaScript
    Auf GitHub ansehen↗6,204
  • microsoft/typespecAvatar von microsoft

    microsoft/typespec

    5,781Auf GitHub ansehen↗

    TypeSpec is a language for defining cloud API shapes and generating OpenAPI, JSON Schema, and client/server code from a single source of truth. It functions as a protocol-agnostic API designer that models REST, gRPC, and other API protocols using a unified, extensible syntax, with a decorator-based metadata system for attaching metadata, validation rules, and lifecycle visibility to API models and operations. The compiler produces OpenAPI 3.0 specifications and other artifacts, and the tool supports declaring API versions and tracking changes to models, properties, and operations across releas

    Records the API version when a required property became optional.

    Javajson-schemaopenapi3protobuf
    Auf GitHub ansehen↗5,781
  1. Home
  2. Data & Databases
  3. Schema Validation Libraries
  4. Deep Property Validation

Unter-Tags erkunden

  • Database Column ValidationVerification that strings used in queries correspond to actual database columns or model properties. **Distinct from Deep Property Validation:** Distinct from Deep Property Validation by matching strings against a database schema rather than nested object paths.
  • Exact Optional Property Validation1 Sub-TagValidation logic that distinguishes between a missing object key and a key explicitly set to undefined. **Distinct from Deep Property Validation:** Distinct from Deep Property Validation: focuses on the presence vs. explicit undefined value of a key rather than traversing nested paths.
  • Existence VerificationsChecks for the presence of keys at specific nested paths within data structures. **Distinct from Deep Property Validation:** Specifically verifies existence of a property, distinct from broader schema validation logic.