JSON Schema Specifications

2025.9.1 · active · verified Sat Mar 28

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

Install

Imports

Quickstart

Demonstrates how to import the package and access a specific schema for validation purposes.

import jsonschema_specifications

# Access a specific schema
schema = jsonschema_specifications.get_schema('draft-2020-12/schema')

# Use the schema for validation
# ...

view raw JSON →