from __future__ import annotations from typing import Annotated from pydantic import Field TodoOrder = Annotated[int, Field(ge=0)]