Skip to main content

JSON Schema to Pydantic model conversion library

Project description

Pydantic JSON Schema

CI Coverage PyPI Python Versions License: MIT Docs Ruff uv mypy pre-commit

Pydantic turns models into JSON Schema. This library does the reverse — it turns a JSON Schema into a Pydantic model, so you can validate data against a schema you already have, with all of Pydantic's runtime checks and editor support.

Reach for it when the schema comes first: API contracts, config files, tool definitions, or validating LLM output against a fixed shape.

Installation

uv add pydantic-jsonschema

Requires Python 3.12+. See the installation guide for optional validator libraries.

Quick start

from pydantic_jsonschema import Schema, to_model

schema = Schema.model_validate({
    "type": "object",
    "properties": {
        "name": {"type": "string"},
        "age": {"type": "integer", "minimum": 0},
    },
    "required": ["name"],
})

User = to_model(schema, model_name="User")

user = User(name="Alice", age=30)
print(user.model_dump())
#> {'name': 'Alice', 'age': 30}

What's inside

Three building blocks — and a fourth on the way.

1. The schema model — Schema & Reference

A Pydantic model for JSON Schema itself: parse, inspect, and serialize schemas with full type safety. $refs are parsed as Reference objects and resolved during conversion.

from pydantic_jsonschema import DataType, Schema

schema = Schema(
    type=DataType.OBJECT,
    properties={"name": Schema(type=DataType.STRING)},
    required=["name"],
)

print(schema.model_dump_json())
#> {"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}

2. The converter — to_model / SchemaConverter

Turns a Schema into a Pydantic model (see Quick start). It resolves $ref / $defs, maps anyOf / oneOf (including discriminated unions) / allOf to Python types, and applies string, number, array, and object constraints as Pydantic validation.

3. Formats

Built-in types for every format in the JSON Schema spec (email, uri, uuid, date-time, hostname, json-pointer, regex, and more) — with zero extra dependencies. Map your own Pydantic type for custom formats.

from pydantic_jsonschema import Schema, to_model
from pydantic_jsonschema.formats import Email

schema = Schema.model_validate({
    "type": "object",
    "properties": {"email": {"type": "string", "format": "email"}},
    "required": ["email"],
})

User = to_model(schema, formats={"email": Email})

print(User(email="alice@example.com").email)
#> alice@example.com

Planned: configurable loading by type

Per-object control over how each type is loaded, inspired by adaptix.

Documentation

https://danipulok.github.io/pydantic-jsonschema/

Acknowledgments

  • vgavro — initial library idea and early guidance
  • bodlan — early documentation review and feedback

License

MIT License - see LICENSE for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pydantic_jsonschema-0.0.13.tar.gz (38.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pydantic_jsonschema-0.0.13-py3-none-any.whl (54.1 kB view details)

Uploaded Python 3

File details

Details for the file pydantic_jsonschema-0.0.13.tar.gz.

File metadata

  • Download URL: pydantic_jsonschema-0.0.13.tar.gz
  • Upload date:
  • Size: 38.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pydantic_jsonschema-0.0.13.tar.gz
Algorithm Hash digest
SHA256 2a73ec3d365941db3395aba3b60933c6d9c5240e458a97b0e35760a8c4cf4549
MD5 8b5002d98360daea9949feee033693dd
BLAKE2b-256 00b77da239b4526bf1eb3032e9ed19affd95147c7dcddaa5866f8c496948b1b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pydantic_jsonschema-0.0.13.tar.gz:

Publisher: release.yml on Danipulok/pydantic-jsonschema

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pydantic_jsonschema-0.0.13-py3-none-any.whl.

File metadata

File hashes

Hashes for pydantic_jsonschema-0.0.13-py3-none-any.whl
Algorithm Hash digest
SHA256 5f5b1656f66125dadaf505217d018e0888b8da02398cd36bb40109f34d236a4b
MD5 e031589d439978a6511e43b0f94874f6
BLAKE2b-256 f063c983ab5bca283540f1d42900a4190097c5f3afd04c0f04f7e9435901a8e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pydantic_jsonschema-0.0.13-py3-none-any.whl:

Publisher: release.yml on Danipulok/pydantic-jsonschema

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page