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
parent
commit
89e03bad16
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 22
      docs/en/docs/tutorial/path-params.md
  2. 22
      docs/en/docs/tutorial/query-params.md

22
docs/en/docs/tutorial/path-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 ```JSON
{ {
"detail": [ "detail": [
{ {
"loc": [ "type": "int_parsing",
"path", "loc": [
"item_id" "path",
], "item_id"
"msg": "value is not a valid integer", ],
"type": "type_error.integer" "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"
}
]
} }
``` ```

22
docs/en/docs/tutorial/query-params.md

@ -173,16 +173,18 @@ http://127.0.0.1:8000/items/foo-item
```JSON ```JSON
{ {
"detail": [ "detail": [
{ {
"loc": [ "type": "missing",
"query", "loc": [
"needy" "query",
], "needy"
"msg": "field required", ],
"type": "value_error.missing" "msg": "Field required",
} "input": null,
] "url": "https://errors.pydantic.dev/2.1/v/missing"
}
]
} }
``` ```

Loading…
Cancel
Save