JSON Schema Specifications
A Python package providing JSON support files from the JSON Schema Specifications, including metaschemas and vocabularies, packaged for runtime access as a referencing-based Schema Registry. Current version: 2025.9.1. Release cadence: Regular updates with recent releases in 2025 and 2024.
Warnings
- breaking The package's import path has changed from 'jsonschema_specifications' to 'jsonschema_specifications'.
- deprecated Support for Python versions below 3.9 has been deprecated.
Install
-
pip install jsonschema-specifications
Imports
- jsonschema_specifications
import jsonschema_specifications
Quickstart
import jsonschema_specifications
# Access a specific schema
schema = jsonschema_specifications.get_schema('draft-2020-12/schema')
# Use the schema for validation
# ...