awesome-repositories.com
ब्लॉग
MCP
awesome-repositories.com

AI-संचालित खोज के साथ बेहतरीन ओपन-सोर्स रिपॉजिटरी खोजें।

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्टMCP सर्वरहमारे बारे मेंहम रैंकिंग कैसे करते हैंप्रेस
कानूनीगोपनीयताशर्तें
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
python-jsonschema avatar

python-jsonschema/jsonschema

0
View on GitHub↗
4,951 स्टार्स·624 फोर्क्स·Python·MIT·25 व्यूज़python-jsonschema.readthedocs.io↗

Jsonschema

यह प्रोजेक्ट एक JSON Schema वैलिडेशन लाइब्रेरी और फ्रेमवर्क है जिसका उपयोग यह सत्यापित करने के लिए किया जाता है कि डेटा इंस्टेंस घोषणात्मक परिभाषाओं के अनुरूप हैं। यह एक वैलिडेशन इंजन के रूप में कार्य करता है जो संरचनात्मक बाधाओं और डेटा टाइप्स को लागू करता है, साथ ही आधिकारिक मेटा-स्कीमा के खिलाफ सिंटैक्स के रूप में स्कीमा परिभाषाओं को सही सुनिश्चित करने के लिए एक मेटा-वैलिडेटर के रूप में भी कार्य करता है।

लाइब्रेरी को एक्स्टेंसिबिलिटी के लिए डिज़ाइन किया गया है, जो उपयोगकर्ताओं को स्कीमा कीवर्ड्स को विशेष कॉल करने योग्य फ़ंक्शंस से मैप करके कस्टम वैलिडेशन लॉजिक को परिभाषित करने की अनुमति देता है। इसमें विभिन्न डॉक्यूमेंट्स में सब-स्कीमा का पुन: उपयोग करने के लिए आंतरिक और बाहरी URI संदर्भों को मैनेज करने के लिए एक रजिस्ट्री-आधारित संदर्भ रिज़ॉल्वर शामिल है।

सिस्टम डेटा टाइप सत्यापन, ईमेल और UUIDs जैसे प्रकारों के लिए स्ट्रिंग प्रारूप जाँच, और व्यापक एरर रिपोर्टिंग सहित वैलिडेशन क्षमताओं की एक विस्तृत श्रृंखला को कवर करता है। डायग्नोस्टिक उपकरण डेटा संरचना के भीतर सबसे प्रासंगिक विफलताओं की पहचान करने के लिए नेस्टेड एरर ट्रैकिंग और ह्यूरिस्टिक फ़िल्टरिंग प्रदान करते हैं।

Features

  • JSON Schema Implementations - Implements the full JSON Schema specification for evaluating data instances against declarative definitions.
  • JSON Schema Validation - Verifies that JSON data instances conform to declarative schema definitions and reports structural mismatches.
  • Schema Reference Resolution - Resolves internal and external pointers within schema definitions using a registry-based system.
  • Data Type Validation - Verifies that data instances conform to recognized schema types.
  • Data Validation Frameworks - Provides an extensible framework for enforcing structural constraints and data types on JSON documents.
  • Validation Error Reporters - Iteratively reports all validation mismatches instead of stopping at the first failure.
  • Keyword Validation Mappings - Implements a mapping system that associates schema keywords with specific executable functions for custom validation logic.
  • Meta-Schema Validations - Verifies that a schema definition conforms to the official JSON Schema meta-specification.
  • Specification Conformance Validation - Verifies if a data object conforms to a declarative JSON Schema definition.
  • Format Validators - Enforces compliance for primitive types against formats like email or UUID using a hook system.
  • Significance-Based Filtering - Identifies the most significant validation failures by analyzing data depth and keyword importance.
  • JSON Schema Reference Resolvers - Resolves internal and external URI references using a registry to enable subschema reuse across documents.
  • Schema Keyword Functions - Enables mapping schema keywords to custom callable functions and configuring specialized type and format checkers.
  • Custom Format Validators - Allows the registration of domain-specific data formats to extend the standard validation logic.
  • Recursive Path Tracking - Tracks the precise location within nested data structures to report accurate error paths.
  • Pluggable Format Checkers - Provides an extensible registry of functions to verify that strings match predefined formats like email or UUID.
  • Primary Error Identification - Heuristically identifies the most significant error from a set of failures based on data hierarchy and keyword importance.
  • Specification Draft Implementations - Implements dedicated validator classes to maintain compatibility across different versions of the JSON Schema specification.
  • Extended Format Dependencies - Uses optional extended dependencies to provide enhanced validation for specialized string formats.
  • Data Validation - Implementation of JSON Schema.
  • Data Validation - Implementation of the JSON Schema specification.

स्टार हिस्ट्री

python-jsonschema/jsonschema के लिए स्टार हिस्ट्री चार्टpython-jsonschema/jsonschema के लिए स्टार हिस्ट्री चार्ट

AI सर्च

और अधिक बेहतरीन रिपॉजिटरी खोजें

अपनी ज़रूरत को सरल भाषा में बताएं — AI हजारों क्यूरेटेड ओपन-सोर्स प्रोजेक्ट्स को प्रासंगिकता के आधार पर रैंक करता है।

Start searching with AI

Jsonschema के ओपन-सोर्स विकल्प

समान ओपन-सोर्स प्रोजेक्ट्स, जो Jsonschema के साथ साझा की गई सुविधाओं के आधार पर रैंक किए गए हैं।
  • julian/jsonschemaJulian का अवतार

    Julian/jsonschema

    4,951GitHub पर देखें↗

    This project is a Python implementation of the JSON Schema specification, providing a library for verifying that data instances conform to defined schemas. It serves as a data validation framework capable of validating both the data itself and the schemas against official meta-schemas to ensure structural correctness. The library features a schema reference resolver that maps URIs to definitions, enabling the resolution of internal and remote references for modular schema management. It is designed for extensibility, allowing for the definition of custom keywords, custom type-checking logic,

    Python
    GitHub पर देखें↗4,951
  • everit-org/json-schemaeverit-org का अवतार

    everit-org/json-schema

    901GitHub पर देखें↗

    This project is a Java library designed to validate JSON documents against defined schema specifications. It functions as a standards-compliant engine that ensures data integrity by checking structural compliance and enforcing business rules within Java applications. The library distinguishes itself through its flexible validation strategies, allowing developers to inject custom logic and pattern-matching engines to handle specialized data formats. It supports configurable execution modes, enabling users to either halt validation immediately upon the first error or collect all violations for

    Java
    GitHub पर देखें↗901
  • java-json-tools/json-schema-validatorjava-json-tools का अवतार

    java-json-tools/json-schema-validator

    1,642GitHub पर देखें↗

    This library is a Java-based tool for enforcing data structure constraints and verifying technical formats against defined schema specifications. It functions as a processing utility that parses complex data structures while managing external schema references and circular dependencies. The engine distinguishes itself through an immutable processor design that enables thread-safe, concurrent validation without requiring external synchronization. It employs arbitrary-precision arithmetic to evaluate numeric constraints, preventing common floating-point rounding errors, and utilizes character-l

    Java
    GitHub पर देखें↗1,642
  • voxpupuli/json-schemavoxpupuli का अवतार

    voxpupuli/json-schema

    1,645GitHub पर देखें↗

    This library is a Ruby-based validation engine designed to verify JSON data structures against official schema specifications. It ensures data integrity by confirming that objects, strings, and files conform to defined structural constraints, while also validating the integrity of the schema definitions themselves against official metaschema standards. The project distinguishes itself through a highly modular architecture that allows for deep customization. Users can register custom validation rules and format handlers to enforce project-specific business logic that extends beyond standard sp

    Rubyhacktoberfest
    GitHub पर देखें↗1,645
Jsonschema के सभी 30 विकल्प देखें→

अक्सर पूछे जाने वाले प्रश्न

python-jsonschema/jsonschema क्या करता है?

यह प्रोजेक्ट एक JSON Schema वैलिडेशन लाइब्रेरी और फ्रेमवर्क है जिसका उपयोग यह सत्यापित करने के लिए किया जाता है कि डेटा इंस्टेंस घोषणात्मक परिभाषाओं के अनुरूप हैं। यह एक वैलिडेशन इंजन के रूप में कार्य करता है जो संरचनात्मक बाधाओं और डेटा टाइप्स को लागू करता है, साथ ही आधिकारिक मेटा-स्कीमा के खिलाफ सिंटैक्स के रूप में स्कीमा परिभाषाओं को सही सुनिश्चित करने के लिए एक मेटा-वैलिडेटर के रूप में भी कार्य करता है।

python-jsonschema/jsonschema की मुख्य विशेषताएं क्या हैं?

python-jsonschema/jsonschema की मुख्य विशेषताएं हैं: JSON Schema Implementations, JSON Schema Validation, Schema Reference Resolution, Data Type Validation, Data Validation Frameworks, Validation Error Reporters, Keyword Validation Mappings, Meta-Schema Validations।

python-jsonschema/jsonschema के कुछ ओपन-सोर्स विकल्प क्या हैं?

python-jsonschema/jsonschema के ओपन-सोर्स विकल्पों में शामिल हैं: julian/jsonschema — This project is a Python implementation of the JSON Schema specification, providing a library for verifying that data… everit-org/json-schema — This project is a Java library designed to validate JSON documents against defined schema specifications. It functions… java-json-tools/json-schema-validator — This library is a Java-based tool for enforcing data structure constraints and verifying technical formats against… voxpupuli/json-schema — This library is a Ruby-based validation engine designed to verify JSON data structures against official schema… epoberezkin/ajv — Ajv is a JSON Schema validator and schema compilation engine used to verify that JavaScript objects conform to… jquense/yup — Yup is a JavaScript schema validation library used to define data shapes and validate runtime values. It functions as…