The practice has a list of doctors. You are given a file, say DoctorsList.json, with the following data:
[{
"id": 1,
"name": "Dr. Smith",
"dateOfBirth": "1980-05-15",
"address": "123 Main St",
"postalCode": "A1B 2C3",
"city": "Toronto",
"province": "ON",
"country": "Canada",
"phoneNumber": "123-456-7890",
"specialty": "Cardiology"
},
{
"id": 2,
"name": "Dr. Johnson",
"dateOfBirth": "1975-08-20",
"address": "456 Elm St",
"postalCode": "X0X 0X0",
"city": "Vancouver",
"province": "BC",
"country": "Canada",
"phoneNumber": "456-789-0123",
"specialty": "Pediatrics"
}]
The page will show a table with the list of doctors. Refer to the style of this page .