Browse Source
📝 Update example validation error from Pydantic v1 to match Pydantic v2 in `docs/en/docs/tutorial/path-params.md` (#10043)
pull/10490/head
Giulio Davide Carparelli
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
24 additions and
20 deletions
-
docs/en/docs/tutorial/path-params.md
-
docs/en/docs/tutorial/query-params.md
|
|
@ -46,16 +46,18 @@ But if you go to the browser at <a href="http://127.0.0.1:8000/items/foo" class= |
|
|
|
|
|
|
|
```JSON |
|
|
|
{ |
|
|
|
"detail": [ |
|
|
|
{ |
|
|
|
"loc": [ |
|
|
|
"path", |
|
|
|
"item_id" |
|
|
|
], |
|
|
|
"msg": "value is not a valid integer", |
|
|
|
"type": "type_error.integer" |
|
|
|
} |
|
|
|
] |
|
|
|
"detail": [ |
|
|
|
{ |
|
|
|
"type": "int_parsing", |
|
|
|
"loc": [ |
|
|
|
"path", |
|
|
|
"item_id" |
|
|
|
], |
|
|
|
"msg": "Input should be a valid integer, unable to parse string as an integer", |
|
|
|
"input": "foo", |
|
|
|
"url": "https://errors.pydantic.dev/2.1/v/int_parsing" |
|
|
|
} |
|
|
|
] |
|
|
|
} |
|
|
|
``` |
|
|
|
|
|
|
|
|
|
@ -173,16 +173,18 @@ http://127.0.0.1:8000/items/foo-item |
|
|
|
|
|
|
|
```JSON |
|
|
|
{ |
|
|
|
"detail": [ |
|
|
|
{ |
|
|
|
"loc": [ |
|
|
|
"query", |
|
|
|
"needy" |
|
|
|
], |
|
|
|
"msg": "field required", |
|
|
|
"type": "value_error.missing" |
|
|
|
} |
|
|
|
] |
|
|
|
"detail": [ |
|
|
|
{ |
|
|
|
"type": "missing", |
|
|
|
"loc": [ |
|
|
|
"query", |
|
|
|
"needy" |
|
|
|
], |
|
|
|
"msg": "Field required", |
|
|
|
"input": null, |
|
|
|
"url": "https://errors.pydantic.dev/2.1/v/missing" |
|
|
|
} |
|
|
|
] |
|
|
|
} |
|
|
|
``` |
|
|
|
|
|
|
|