Skip to content

Commit

Permalink
Fix typo (fastapi-users#1248)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbrochart committed Jul 12, 2023
1 parent 69f96c1 commit 3bf0f88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/configuration/schemas.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

FastAPI is heavily using [Pydantic models](https://pydantic-docs.helpmanual.io/) to validate request payloads and serialize responses. **FastAPI Users** is no exception and will expect you to provide Pydantic schemas representing a user when it's read, created and updated.

It's **different from your `User` model**, which is an object that actually interacts with the database. Those schemas on the other hand are here to validate data and serialize correct it in the API.
It's **different from your `User` model**, which is an object that actually interacts with the database. Those schemas on the other hand are here to validate data and correctly serialize it in the API.

**FastAPI Users** provides a base structure to cover its needs. It is structured like this:

Expand Down

0 comments on commit 3bf0f88

Please sign in to comment.