Initial Commit

This commit is contained in:
2025-03-21 22:35:26 -03:00
commit 0b11408c8f
11 changed files with 777 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
from jsonschema_pydantic.types import JSONSchema
from typing import Any, Dict
def jsonschema_to_pydantic(
schema: JSONSchema,
): ...