diff --git a/docs/concepts/strict_mode.md b/docs/concepts/strict_mode.md index 3a204093c2..4597282a38 100644 --- a/docs/concepts/strict_mode.md +++ b/docs/concepts/strict_mode.md @@ -37,6 +37,7 @@ except ValidationError as exc: ``` There are various ways to get strict-mode validation while using Pydantic, which will be discussed in more detail below: + * [Passing `strict=True` to the validation methods](#strict-mode-in-method-calls), such as `BaseModel.model_validate`, `TypeAdapter.validate_python`, and similar for JSON * [Using `Field(strict=True)`](#strict-mode-with-field) with fields of a `BaseModel`, `dataclass`, or `TypedDict`