]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
📝 Add note to docs about Separate Input and Output Schemas with FastAPI version ...
authorSebastián Ramírez <tiangolo@gmail.com>
Sat, 26 Aug 2023 13:20:04 +0000 (15:20 +0200)
committerGitHub <noreply@github.com>
Sat, 26 Aug 2023 13:20:04 +0000 (15:20 +0200)
docs/en/docs/how-to/separate-openapi-schemas.md

index 39d96ea39152df3a1c6825df8ab4848d778a197e..d289391ca344bba02a80e112d7c7c9e3cb13d41d 100644 (file)
@@ -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"