From 65c1fcc68db9e9b1e2ae272c3c8dd0c9ccce3f57 Mon Sep 17 00:00:00 2001 From: Kevyn Valladares Date: Sat, 24 Jan 2026 11:50:51 -0700 Subject: [PATCH] Docs: clarify handling of extra fields in request body --- docs/en/docs/tutorial/body.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/docs/tutorial/body.md b/docs/en/docs/tutorial/body.md index 2a1dbc8328..453e871061 100644 --- a/docs/en/docs/tutorial/body.md +++ b/docs/en/docs/tutorial/body.md @@ -57,7 +57,7 @@ For example, this model above declares a JSON "`object`" (or Python `dict`) like /// note -By default, if the client sends extra fields in the request body that are not defined in the Pydantic model, they are ignored (not included in the model instance or in the response). This behavior comes from Pydantic's default `extra = "ignore"` configuration. +By default, if the client sends extra fields in the request body that are not defined in the Pydantic model, they are ignored (not included in the model instance or in the response). This behavior comes from Pydantic's default handling of extra fields. ///