# Realistic API response from student management system
api_response = {
"students": [{
"id": 12345,
"username": "alice_j",
"profile": {
"name": "Alice Johnson",
"email": "alice@uc.edu",
"year": "junior",
"major": "Information Systems"
},
"courses": [{"code": "IS4010", "grade": 95, "credits": 3},
{"code": "CS2071", "grade": 88, "credits": 4},
{"code": "MATH2045", "grade": 92, "credits": 3}
],
"activities": ["ACM", "IS Club", "Dean's List"],
"permissions": ["student", "tutor", "lab_assistant"]
},
{
"id": 67890,
"username": "bob_s",
"profile": {
"name": "Bob Smith",
"email": "bob@uc.edu",
"year": "senior",
"major": "Computer Science"
},
"courses": [{"code": "IS4010", "grade": 87, "credits": 3},
{"code": "CS5168", "grade": 91, "credits": 3}
],
"activities": ["IEEE", "Hackathon Club"],
"permissions": ["student", "teaching_assistant"]
}
],
"metadata": {
"total_students": 2,
"timestamp": "2024-03-15T10:30:00Z",
"api_version": "v2.1"
}
}