awesome-repositories.com
Blog
awesome-repositories.com

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateAlternative open-sourceSoftware self-hostedBlogHartă site
ProiectDespreCum realizăm clasamentulPresăServer MCP
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

6 repository-uri

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

Găsește cele mai bune repo-uri cu AI.Vom căuta cele mai potrivite repository-uri folosind AI.
  • ajv-validator/ajvAvatar ajv-validator

    ajv-validator/ajv

    14,733Vezi pe GitHub↗

    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
    Vezi pe GitHub↗14,733
  • open-circle/valibotAvatar open-circle

    open-circle/valibot

    8,769Vezi pe GitHub↗

    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
    Vezi pe GitHub↗8,769
  • chaijs/chaiAvatar chaijs

    chaijs/chai

    8,264Vezi pe GitHub↗

    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
    Vezi pe GitHub↗8,264
  • larastan/larastanAvatar larastan

    larastan/larastan

    6,430Vezi pe GitHub↗

    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
    Vezi pe GitHub↗6,430
  • angus-c/justAvatar angus-c

    angus-c/just

    6,204Vezi pe GitHub↗

    Just este o colecție de biblioteci de utilitare JavaScript concepute pentru manipularea datelor, programarea funcțională, optimizarea performanței, analiza statistică și procesarea șirurilor de caractere. Oferă un set de instrumente pentru deep cloning, filtrarea și transformarea obiectelor și array-urilor complexe. Proiectul este structurat ca o serie de module fără dependențe, permițând utilizarea independentă a utilitarelor pentru a minimiza dimensiunea bundle-ului. Implementează tipare de programare funcțională, inclusiv currying, piping și aplicare parțială, și oferă controlul execuției prin memoizare, debouncing și throttling. Biblioteca acoperă o gamă largă de capabilități, inclusiv manipularea profundă a obiectelor, generarea combinatorie de date și operațiuni matematice precum verificarea numerelor prime și numeric clamping. Include, de asemenea, instrumente statistice pentru calcularea metricilor precum varianța și deviația standard, precum și utilitare de procesare a textului pentru conversia cazurilor și interpolarea șirurilor.

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

    JavaScript
    Vezi pe GitHub↗6,204
  • microsoft/typespecAvatar microsoft

    microsoft/typespec

    5,781Vezi pe GitHub↗

    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
    Vezi pe GitHub↗5,781
  1. Home
  2. Data & Databases
  3. Schema Validation Libraries
  4. Deep Property Validation

Explorează sub-etichetele

  • 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.