@@ -94,8 +94,8 @@ class BeforeValidator:
94
94
95
95
Attributes:
96
96
func: The validator function.
97
- json_schema_input_type: The input typeof the function. This is only used to generate the appropriate
98
- JSON Schema (in validation mode).
97
+ json_schema_input_type: The input type used to generate the appropriate
98
+ JSON Schema (in validation mode). The actual input type is `Any`.
99
99
100
100
Example:
101
101
```python
@@ -166,8 +166,8 @@ class PlainValidator:
166
166
167
167
Attributes:
168
168
func: The validator function.
169
- json_schema_input_type: The input typeof the function. This is only used to generate the appropriate
170
- JSON Schema (in validation mode).If not provided, will default to `Any`.
169
+ json_schema_input_type: The input type used to generate the appropriate
170
+ JSON Schema (in validation mode).The actual input type is `Any`.
171
171
172
172
Example:
173
173
```python
@@ -257,8 +257,8 @@ class WrapValidator:
257
257
258
258
Attributes:
259
259
func: The validator function.
260
- json_schema_input_type: The input typeof the function. This is only used to generate the appropriate
261
- JSON Schema (in validation mode).
260
+ json_schema_input_type: The input type used to generate the appropriate
261
+ JSON Schema (in validation mode). The actual input type is `Any`.
262
262
263
263
```python
264
264
from datetime import datetime