"""Infrastructure schemas.""" from pydantic import BaseModel, ConfigDict, Field class HelloResponse(BaseModel): model_config = ConfigDict(title="Response model for the hello endpoint.") status: str = Field(default="ok", description="Status of the service") class HelloSplitResponse(BaseModel): model_config = ConfigDict(title="Response model for the hello split endpoint.") message: str = Field( default="hello", description="Message returned by the hello split endpoint" )