From: Sebastián Ramírez Date: Sat, 26 Aug 2023 13:20:04 +0000 (+0200) Subject: 📝 Add note to docs about Separate Input and Output Schemas with FastAPI version ... X-Git-Tag: 0.103.0~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=594b1ae0c38550ddfdedab314276c1a659ce4719;p=thirdparty%2Ffastapi%2Ffastapi.git 📝 Add note to docs about Separate Input and Output Schemas with FastAPI version (#10150) --- diff --git a/docs/en/docs/how-to/separate-openapi-schemas.md b/docs/en/docs/how-to/separate-openapi-schemas.md index 39d96ea391..d289391ca3 100644 --- a/docs/en/docs/how-to/separate-openapi-schemas.md +++ b/docs/en/docs/how-to/separate-openapi-schemas.md @@ -199,6 +199,9 @@ Probably the main use case for this is if you already have some autogenerated cl In that case, you can disable this feature in **FastAPI**, with the parameter `separate_input_output_schemas=False`. +!!! info + Support for `separate_input_output_schemas` was added in FastAPI `0.102.0`. 🤓 + === "Python 3.10+" ```Python hl_lines="10"