9 lines
140 B
Python
9 lines
140 B
Python
from jsonschema_pydantic.types import JSONSchema
|
|
|
|
from typing import Any, Dict
|
|
|
|
|
|
def jsonschema_to_pydantic(
|
|
schema: JSONSchema,
|
|
): ...
|