fastapi-core-schemas
Installation
SKILL.md
FastAPI Core Schemas
Overview
This skill covers creating base Pydantic v2 schemas for consistent request/response handling across the application.
Create core/schemas.py
Create src/app/core/schemas.py:
from datetime import datetime
from uuid import UUID
from pydantic import BaseModel, ConfigDict