Pydantic ماڈلز کلاسز ہیں (جو BaseModel کو subclass کرتی ہیں) جو ڈیٹا کی ساخت، اقسام، اور validation rules کو define کرتی ہیں۔ FastAPI انہیں ہر جگہ استعمال کرتا ہے — request bodies، response shapes، اور settings کے لیے — جو انہیں اس کے type-driven ڈیزائن کا دل بناتا ہے۔
ماڈل کی تعریف
pydantic BaseModel, EmailStr, Field
():
name:
email: EmailStr
age: = Field(ge=, le=)
is_active: =
tags: [] = []
