You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -108,7 +108,7 @@ Type Hints allow for inline specification of the input type of a parameter. Some
108
108
|`datetime.datetime`| Received as a `str` in ISO-8601 date-time format | Y | Y | Y | Y | N |
109
109
|`datetime.date`| Received as a `str` in ISO-8601 full-date format | Y | Y | Y | Y | N |
110
110
|`datetime.time`| Received as a `str` in ISO-8601 partial-time format | Y | Y | Y | Y | N |
111
-
|`dict`| For `Query` and `Form` inputs, users should pass the stringified JSON | N |N| Y |N| N |
111
+
|`dict`| For `Query` and `Form` inputs, users should pass the stringified JSON | N |Y| Y |Y| N |
112
112
|`FileStorage`|| N | N | N | N | Y |
113
113
114
114
These can be used in tandem to describe a parameter to validate: `parameter_name: type_hint = ParameterSubclass()`
@@ -117,7 +117,7 @@ These can be used in tandem to describe a parameter to validate: `parameter_name
117
117
-`ParameterSubclass`: An instance of a subclass of `Parameter`
118
118
119
119
### Validation with arguments to Parameter
120
-
Validation beyond type-checking can be done by passing arguments into the constructor of the `Parameter` subclass (with the exception of `MultiSource`). The arguments available for use on each type hint are:
120
+
Validation beyond type-checking can be done by passing arguments into the constructor of the `Parameter` subclass. The arguments available for use on each type hint are:
121
121
122
122
| Parameter Name | Type of Parameter | Effective On Types | Description |
0 commit comments