Files
fastapi-toolsets/docs/reference/schemas.md
d3vyce 432e0722e0 refactor: remove deprecated parameter and function/cleanup code (#101)
* refactor: remove deprecated parameter and function

* refactor: centralize type aliases in types.py and simplify crud layer

* test: add missing tests for fixtures/utils.py

* refactor: simplify and deduplicate across crud, metrics, cli, and
exceptions

* docs: fix old Paginate references

* docs: add migration + fix icon

* docs: update README/migration to v2
2026-03-04 17:19:38 +01:00

813 B

schemas

Here's the reference for all response models and types provided by the schemas module.

You can import them directly from fastapi_toolsets.schemas:

from fastapi_toolsets.schemas import (
    PydanticBase,
    ResponseStatus,
    ApiError,
    BaseResponse,
    Response,
    ErrorResponse,
    OffsetPagination,
    CursorPagination,
    PaginatedResponse,
)

::: fastapi_toolsets.schemas.PydanticBase

::: fastapi_toolsets.schemas.ResponseStatus

::: fastapi_toolsets.schemas.ApiError

::: fastapi_toolsets.schemas.BaseResponse

::: fastapi_toolsets.schemas.Response

::: fastapi_toolsets.schemas.ErrorResponse

::: fastapi_toolsets.schemas.OffsetPagination

::: fastapi_toolsets.schemas.CursorPagination

::: fastapi_toolsets.schemas.PaginatedResponse