Hospital/
1{
2 "patient":{
3 "name":"John Smith",
4 "age":35,
5 "gender":"male",
6 "blood_type":"AB+",
7 "address":"123 Main Street, Anytown, USA",
8 "phone":"555-1234",
9 "email":"john.smith@example.com",
10 "appointments":[
11 {
12 "doctor":"Dr. Jane Doe",
13 "date":"2023-03-01",
14 "time":"14:00",
15 "reason":"Annual Checkup"
16 },
17 {
18 "doctor":"Dr. John Smith",
19 "date":"2023-05-12",
20 "time":"10:30",
21 "reason":"Follow-up for knee surgery"
22 }
23 ],
24 "medical_records":[
25 {
26 "date":"2022-12-15",
27 "doctor":"Dr. Jane Doe",
28 "diagnosis":"Common cold",
29 "prescription":"Rest, fluids, and over-the-counter medication"
30 },
31 {
32 "date":"2022-11-01",
33 "doctor":"Dr. John Smith",
34 "diagnosis":"Knee injury",
35 "prescription":"Physical therapy and pain medication"
36 }
37 ]
38 }
39}
patient
: This is the main object, which contains all the patient's information, appointments, and medical records.
name
: The patient's full name.
age
: The patient's age.
gender
: The patient's gender.
blood_type
: The patient's blood type.
address
: The patient's home address.
phone
: The patient's phone number.
email
: The patient's email address.
appointments
: An array of appointments the patient has scheduled with doctors. Each appointment includes the doctor's name, the appointment date and time, and the reason for the appointment.
medical_records
: An array of the patient's medical records. Each record includes the date of the visit, the doctor who saw the patient, the diagnosis, and the prescription given.
This JSON data can be used to store and retrieve patient information in a Hospital Management System, allowing doctors and other healthcare professionals to easily access and manage patient data.
Developed by
Episyche Technologies
Copyright © 2022-2024 Episyche Technologies. All rights reserved.
Based on JSON CRACK, by AykutSarac