Files
jambo/jsonschema_pydantic/jsonschema_to_pydantic.py
2025-03-21 22:50:52 -03:00

9 lines
140 B
Python

from jsonschema_pydantic.types import JSONSchema
from typing import Any, Dict
def jsonschema_to_pydantic(
schema: JSONSchema,
): ...