From: Yurii Motov Date: Thu, 9 Jul 2026 20:54:40 +0000 (+0200) Subject: Fix 404 Pydantic data types X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5caccc0cd5d8771a22c89fe79ee45ebd36fb8d5c;p=thirdparty%2Ffastapi%2Ffastapi.git Fix 404 Pydantic data types --- diff --git a/docs/en/docs/tutorial/extra-data-types.md b/docs/en/docs/tutorial/extra-data-types.md index 63c914efe1..53dd46c914 100644 --- a/docs/en/docs/tutorial/extra-data-types.md +++ b/docs/en/docs/tutorial/extra-data-types.md @@ -49,7 +49,7 @@ Here are some of the additional data types you can use: * `Decimal`: * Standard Python `Decimal`. * In requests and responses, handled the same as a `float`. -* You can check all the valid Pydantic data types here: [Pydantic data types](https://docs.pydantic.dev/latest/usage/types/types/). +* You can check all the valid Pydantic data types here: [Pydantic data types](https://pydantic.dev/docs/validation/latest/concepts/types/). ## Example { #example }