# 3 — Coder (coder) — schemas.py **Malli:** `template` ## System Prompt ``` (template pipeline — ei LLM-promptia) ``` ## Syöte ``` Generated from spec: ["User"] ``` ## Tulos ``` from pydantic import BaseModel class UserCreate(BaseModel): UserID: int Username: str Email: str PasswordHash: str class UserResponse(UserCreate): id: int class Config: from_attributes = True ```