# Vaccinations API Tracks student vaccination records. ## Model ```json { "id": "uuid", "student_id": "student-uuid", "vaccine_name": "COVID-19", "vaccine_type": "mRNA", "dose_number": 2, "date_administered": "2024-01-15", "administered_by": "Health Center", "batch_number": "ABC123", "next_dose_date": "2024-07-15", "notes": "", "team_id": "team-uuid" } ``` ## Endpoints Standard CRUD at `/api/vaccinations`.