# Medical Records API The Medical Records module manages student health information. ## Model ```json { "id": "uuid", "student_id": "student-uuid", "blood_type": "O+", "allergies": "Peanuts, Dust", "chronic_conditions": "Asthma", "medications": "Ventolin inhaler", "emergency_contact": "Mother: +84123456789", "notes": "Keep inhaler accessible", "team_id": "team-uuid" } ``` ## Endpoints Standard CRUD endpoints at `/api/medical_records`. ## Related Modules - [Medical Checkups](medical-checkups.md) - [Vaccinations](vaccinations.md) - [Medical Care](medical-care.md)