From 74c4c3a61ab0ee8656425a93b41c4a7ea5e43c06 Mon Sep 17 00:00:00 2001 From: JSCU-CNI <121175071+JSCU-CNI@users.noreply.github.com> Date: Tue, 15 Oct 2024 16:54:10 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Flatten=20multiple=20Pydantic=20?= =?UTF-8?q?models=20for=20parameters=20in=20path,=20query,=20header=20and?= =?UTF-8?q?=20cookie?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From #12199 onwards, Pydantic models are supported for query, cookie and header parameters. When one parameter is present, the model is flattened in the OpenAPI spec, but when multiple are defined, they aren't. This is confusing, and results in a confusing OpenAPI spec. Since these arguments are used in flattened form anyway, it makes more sense to flatten all of them. --- fastapi/dependencies/utils.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/fastapi/dependencies/utils.py b/fastapi/dependencies/utils.py index 84dfa4d03..83a7a44c5 100644 --- a/fastapi/dependencies/utils.py +++ b/fastapi/dependencies/utils.py @@ -212,11 +212,14 @@ def get_flat_dependant( def _get_flat_fields_from_params(fields: List[ModelField]) -> List[ModelField]: if not fields: return fields - first_field = fields[0] - if len(fields) == 1 and lenient_issubclass(first_field.type_, BaseModel): - fields_to_extract = get_cached_model_fields(first_field.type_) - return fields_to_extract - return fields + result = [] + for field in fields: + if lenient_issubclass(field.type_, BaseModel): + fields_to_extract = get_cached_model_fields(field.type_) + result.extend(fields_to_extract) + else: + result.append(field) + return result def get_flat_params(dependant: Dependant) -> List[ModelField]: