|
@ -6,7 +6,11 @@ from fastapi.openapi.models import Example |
|
|
from pydantic.fields import FieldInfo |
|
|
from pydantic.fields import FieldInfo |
|
|
from typing_extensions import Annotated, deprecated |
|
|
from typing_extensions import Annotated, deprecated |
|
|
|
|
|
|
|
|
from ._compat import PYDANTIC_V2, PYDANTIC_VERSION, Undefined |
|
|
from ._compat import ( |
|
|
|
|
|
PYDANTIC_V2, |
|
|
|
|
|
PYDANTIC_VERSION_MINOR_TUPLE, |
|
|
|
|
|
Undefined, |
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
_Unset: Any = Undefined |
|
|
_Unset: Any = Undefined |
|
|
|
|
|
|
|
@ -105,7 +109,7 @@ class Param(FieldInfo): |
|
|
stacklevel=4, |
|
|
stacklevel=4, |
|
|
) |
|
|
) |
|
|
current_json_schema_extra = json_schema_extra or extra |
|
|
current_json_schema_extra = json_schema_extra or extra |
|
|
if PYDANTIC_VERSION < "2.7.0": |
|
|
if PYDANTIC_VERSION_MINOR_TUPLE < (2, 7): |
|
|
self.deprecated = deprecated |
|
|
self.deprecated = deprecated |
|
|
else: |
|
|
else: |
|
|
kwargs["deprecated"] = deprecated |
|
|
kwargs["deprecated"] = deprecated |
|
@ -561,7 +565,7 @@ class Body(FieldInfo): |
|
|
stacklevel=4, |
|
|
stacklevel=4, |
|
|
) |
|
|
) |
|
|
current_json_schema_extra = json_schema_extra or extra |
|
|
current_json_schema_extra = json_schema_extra or extra |
|
|
if PYDANTIC_VERSION < "2.7.0": |
|
|
if PYDANTIC_VERSION_MINOR_TUPLE < (2, 7): |
|
|
self.deprecated = deprecated |
|
|
self.deprecated = deprecated |
|
|
else: |
|
|
else: |
|
|
kwargs["deprecated"] = deprecated |
|
|
kwargs["deprecated"] = deprecated |
|
|