# Medical Care API Tracks medical care visits and treatments for students. ## Model ```json { "id": "uuid", "student_id": "student-uuid", "visit_date": "2024-01-15", "visit_time": "10:30", "reason": "Headache", "symptoms": "Mild headache, no fever", "treatment": "Rest, water", "medication_given": "Paracetamol 500mg", "outcome": "Returned to class", "staff_id": "nurse-uuid", "parent_notified": true, "team_id": "team-uuid" } ``` ## Endpoints Standard CRUD at `/api/medical_cares`. ## History Medical care history at `/api/medical_care_histories`.