-
Notifications
You must be signed in to change notification settings - Fork 2
/
swagger-output.json
1032 lines (1029 loc) · 34.8 KB
/
swagger-output.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"openapi": "3.0.0",
"info": {
"title": "Medilogue Swagger RestFul API UI",
"description": "Node.js RestFul API UI",
"version": "1.0.0"
},
"servers": [
{
"url": "http://localhost:8080"
}
],
"paths": {
"/register/": {
"post": {
"description": "회원가입에 필요한 정보들을 제공받아서 user table에 저장하는 API",
"parameters": [],
"responses": {
"200": {
"description": "OK"
},
"400": {
"description": "User already exists"
},
"401": {
"description": "DB Error"
},
"500": {
"description": "Internal Server Error"
}
},
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"uid": {
"example": "userid1234",
"type": "string"
},
"password": {
"example": "userpass1234",
"type": "string"
},
"name": {
"example": "heekang jang",
"type": "string"
},
"sex": {
"example": "Male",
"type": "string"
},
"birth": {
"example": "2001-05-19",
"type": "date"
},
"email": {
"example": "userid1234@gmail.com",
"type": "string"
},
"certificationKey": {
"example": "amsdvdkslnn234mflf32fm",
"type": "string"
}
}
}
}
}
}
}
},
"/register/checkUserIdExist": {
"post": {
"description": "회원가입 시 id가 중복되지 않는지 체크하는 API",
"parameters": [],
"responses": {
"200": {
"description": "OK"
},
"400": {
"description": "Bad Request"
}
},
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"uid": {
"example": "any",
"type": "string"
}
}
}
}
}
}
}
},
"/login": {
"post": {
"description": "유저의 ID와 비밀번호를 확인하고 JWT token을 발급해주는 API",
"responses": {
"400": {
"description": "Bad Request"
},
"401": {
"description": "Unauthorized"
},
"500": {
"description": "Internal Server Error"
}
},
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"uid": {
"example": "any",
"type": "string"
},
"password": {
"example": "any",
"type": "string"
}
}
}
}
}
}
}
},
"/chat": {
"get": {
"tags": ["chat"],
"description": "유저가 속한 채팅방의 list를 제공하는 API",
"parameters": [
{
"name": "authorization",
"in": "header",
"schema": {
"type": "string (JWT token)"
}
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"example": {
"success": true,
"chats": [
{
"_id": "63e211a99d81c0024c95cedb",
"room_id": "e57425b7-2fa0-4b59-a9aa-8ef9aec656ca",
"users": [
{
"uid": "test3",
"name": "name3",
"profileImg": "https://i.scdn.co/image/ab6761610000e5ebcdce7620dc940db079bf4952"
},
{
"uid": "test2",
"name": "name2",
"profileImg": "https://i.scdn.co/image/ab6761610000e5ebcdce7620dc940db079bf4952"
}
],
"__v": 7
}
]
}
}
}
},
"500": {
"description": "Internal Server Error"
}
}
}
},
"/chat/{room_id}": {
"get": {
"tags": ["chat"],
"description": "유저가 속한 채팅방의 chatting log를 제공하는 API",
"parameters": [
{
"name": "room_id",
"in": "path",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"example": {
"success": true,
"chats": [
{
"user": "Emily Davis",
"content": "hello",
"createdAt": "2024-02-02T10:33:53.792Z",
"room_id": "214a774d-294e-4773-b98d-4a6923cbc159",
"_id": "65bcc11b303f5bda3e4e47c2",
"__v": 0
},
{
"user": "John Doe",
"content": "hello",
"createdAt": "2024-02-02T10:16:59.317+00:00",
"room_id": "214a774d-294e-4773-b98d-4a6923cbc159",
"_id": "65bcc511c5c94895f5e52be6",
"__v": 0
}
]
}
}
}
},
"500": {
"description": "Internal Server Error"
}
}
}
},
"/calendar/:date": {
"get": {
"tags": ["calendar"],
"description": "유저의 이번달 일정을 제공하는 API",
"parameters": [
{
"name": "authorization",
"in": "header",
"schema": {
"type": "string (JWT token)"
}
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"example": {
"success": true,
"schedules": [
{
"content": "당뇨 관리 상담",
"startTime": "2023-02-15T00:00:00Z",
"attendee": "user2"
},
{
"content": "고혈압 관리 상담",
"startTime": "2023-02-15T01:00:00Z",
"attendee": "user1"
},
{
"content": "당뇨 관리 상담",
"startTime": "2023-02-18T01:00:00Z",
"attendee": "user2"
}
]
}
}
}
},
"500": {
"description": "Internal Server Error"
}
}
}
},
"/calendar/create": {
"post": {
"tags": ["calendar"],
"description": "캘린더에 일정을 추가하는 API",
"parameters": [
{
"name": "authorization",
"in": "header",
"schema": {
"type": "string (JWT token)"
}
}
],
"responses": {
"200": {
"description": "OK"
},
"400": {
"description": "Schedule already exists, 전후에 30분 안에 일정이 존재하면 등록할 수 없다."
},
"500": {
"description": "Internal Server Error"
}
},
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"content": {
"example": "당뇨병 관리 상담",
"type": "string"
},
"startTime": {
"example": "2023-02-15T00:00:00Z",
"type": "Date"
},
"attendee": {
"example": "user2, user name을 입력받는다.",
"type": "string"
}
}
}
}
}
}
}
},
"calendar/update/{id}": {
"put": {
"tags": ["calendar"],
"description": "mission의 object id req.param.id로 보내서 mission을 completed 상태로 업데이트하는 API",
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "OK"
},
"403": {
"description": "Forbidden access, 권한이 없는 유저가 접근했을 때"
},
"500": {
"description": "Internal Server Error"
}
}
}
},
"/quiz": {
"get": {
"tags": ["quiz"],
"description": "퀴즈 목록을 제공하는 API로 퀴즈를 응시한 적이 있는지 확인해서 피드백을 제공한다.",
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"example": {
"success": true,
"quiz_list": [
{
"category": "당뇨병 퀴즈 (난이도:상)",
"quiz_cnt": 6,
"take_test": false
},
{
"category": "당뇨병 퀴즈 (난이도:하)",
"quiz_cnt": 5,
"take_test": true
}
]
}
}
}
},
"500": {
"description": "Internal Server Error"
}
}
}
},
"/quiz/result": {
"post": {
"tags": ["quiz"],
"description": "퀴즈 응시 후, 결과를 client로부터 전달받아 DB에 저장하는 API",
"parameters": [
{
"name": "authorization",
"in": "header",
"schema": {
"type": "string (JWT token)"
}
}
],
"responses": {
"200": {
"description": "OK"
},
"400": {
"description": "DB Error"
},
"404": {
"description": "user not found"
},
"500": {
"description": "Internal Server Error"
}
},
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"uid": {
"example": "user2",
"type": "string"
},
"category": {
"example": "diabetes",
"type": "string"
},
"quiz_results": {
"example": [
{
"qid": 1,
"content": "Jane Smith",
"result" : true,
"comment": "Great job! Keep it up!"
},
{
"qid": 2,
"content": "Jane Smith",
"result" : true,
"comment": "Great job! Keep it up!"
},
{
"qid": 3,
"content": "Jane Smith",
"result" : false,
"comment": "정답은 false입니다. 식사 후 혈당이 급격하게 오르는 것을 막기 위해서는 GI지수가 낮은 음식을 섭취해야 합니다."
},
{
"qid": 4,
"content": "Jane Smith",
"result" : true,
"comment": "Great job! Keep it up!"
},
{
"qid": 5,
"content": "Jane Smith",
"result" : false,
"comment": "정답은 true입니다."
}
],
"type": "Array"
}
}
}
}
}
}
}
},
"/quiz/feedback/{category}": {
"get": {
"tags": ["quiz"],
"description": "환자에게 퀴즈에 대한 피드백을 보여주는 API, filter를 이용해서 카테고리에 맞는 결과의 피드백을 가져온다.",
"parameters": [
{
"name": "category",
"in": "path",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"example": {
"success": true,
"feedback": [
{
"category": "당뇨병 퀴즈 (난이도:하)",
"results": [
{
"qid": 1,
"content": "Jane Smith",
"result": true,
"comment": "Great job! Keep it up!"
},
{
"qid": 2,
"content": "Jane Smith",
"result": true,
"comment": "Great job! Keep it up!"
},
{
"qid": 3,
"content": "Jane Smith",
"result": false,
"comment": "정답은 false입니다. 식사 후 혈당이 급격하게 오르는 것을 막기 위해서는 GI지수가 낮은 음식을 섭취해야 합니다."
},
{
"qid": 4,
"content": "Jane Smith",
"result": true,
"comment": "Great job! Keep it up!"
},
{
"qid": 5,
"content": "Jane Smith",
"result": false,
"comment": "정답은 true입니다."
}
]
}
]
}
}
}
},
"500": {
"description": "Internal Server Error"
}
}
}
},
"/clinic/create": {
"post": {
"tags": ["clinic"],
"description": "상담 결과를 요약한 내용을 DB에 저장하는 API로 추후, Speech to Text로 변환하여 저장할 수 있도록 한다.",
"parameters": [
{
"name": "Authorization",
"in": "header",
"schema": {
"type": "string (JWT token)"
}
}
],
"responses": {
"200": {
"description": "OK"
},
"400": {
"description": "DB Error, clinic upload failed!"
},
"500": {
"description": "Internal Server Error"
}
},
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"title": {
"example": "당뇨병 관리 상담",
"type": "string"
},
"content": {
"example": "이번 달에는 공복 혈당이 많이 떨어졌습니다. 앞으로도 이렇게 잘 관리해야겠습니다.",
"type": "string"
},
"doctor_name": {
"example": "정강희",
"type": "string"
},
"specialization": {
"example": "내과",
"type": "string"
},
"patient_name ": {
"example": "희강정",
"type": "string"
},
"patient_age": {
"example": "55",
"type": "Number"
},
"patient_gender":{
"example": "Male",
"type": "string"
}
}
}
}
}
}
}
},
"/clinic/read": {
"get": {
"tags": ["clinic"],
"description": "환자에게는 자신이 받았던 상담의 요약 내용을, 의사에게는 자신이 진료한 환자들의 상담 요약 내용을 제공하는 API",
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"example": {
"success": true,
"clinics": [
{
"doctor": {
"name": "Emily Davis",
"specialization": "내과"
},
"patient": {
"name": "John Doel",
"age": 40,
"gender": "Male"
},
"_id": "65bded591d11d799462c6c83",
"title": "title",
"content": "content",
"date": "2024-02-03T07:38:01.268Z",
"__v": 0
}
]
}
}
}
},
"500": {
"description": "Internal Server Error"
}
}
}
},
"/mission": {
"get": {
"tags": ["mission"],
"description": "의사에게 미션을 관리중인 환자들의 목록들을 제공함.",
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"example": {
"success": true,
"doctor_id": "user9",
"mission_rate": [
{
"uid": "user8",
"name": "Sophia Miller",
"success_rate": 0.5
},
{
"uid": "user10",
"name": "Emma Johnson",
"success_rate": 0
}
]
}
}
}
},
"400": {
"description": "Invalid User Type, 의사 아이디로만 접근 가능합니다."
},
"500": {
"description": "Internal Server Error"
}
}
}
},
"/mission/create": {
"post": {
"tags": ["mission"],
"description": "환자에게 미션을 부여하는 API",
"parameters": [
{
"name": "Authorization",
"in": "header",
"schema": {
"type": "string (JWT token)"
}
}
],
"responses": {
"200": {
"description": "OK"
},
"400": {
"description": "DB Error, mission upload failed!"
},
"500": {
"description": "Internal Server Error"
}
},
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"title": {
"example": "식단 미션",
"type": "string"
},
"content": {
"example": "오늘 아침은 오트밀로 시작해보세요.",
"type": "string"
},
"startDate": {
"example": "2022-02-22T00:00:00Z",
"type": "Date"
},
"endDate": {
"example": "2022-02-23T00:00:00Z",
"type": "Date"
},
"doctor_id": {
"example": "user100",
"type": "string"
},
"doctor_name": {
"example": "정강희",
"type": "string"
},
"specialization": {
"example": "내과",
"type": "string"
},
"patient_name ": {
"example": "희강정",
"type": "string"
},
"patient_id": {
"example": "user50",
"type": "string"
}
}
}
}
}
}
}
},
"mission/update/{id}": {
"put": {
"tags":["mission"],
"description": "mission의 object id req.param.id로 보내서 mission을 completed 상태로 업데이트하는 API",
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "OK"
},
"404": {
"description": "Mission not found"
},
"500": {
"description": "Internal Server Error"
}
}
}
},
"/status/{uid}": {
"get": {
"description": "환자들의 의료 데이터를 통해 상태를 의사들에게 제공하는 API",
"parameters": [
{
"name": "uid",
"in": "path",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"example": {
"user": {
"_id": "65b5e603c1baef44ab99c098",
"uid": "user2",
"password": "$2b$10$6BuhfM8BlqBDBne5xdrqbeR8j1i7Mw/VadoszIO0N6.YgIuS2F4sq",
"name": "John Doel",
"type": "User",
"gender": "Male",
"birth": "1985-03-15T00:00:00.000Z",
"chatRooms": [],
"__v": 1,
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjp7Il9pZCI6IjY1YjVlNjAzYzFiYWVmNDRhYjk5YzA5OCIsInVpZCI6InVzZXIyIiwibmFtZSI6IkpvaG4gRG9lbCIsInR5cGUiOiJVc2VyIiwic2V4IjoiTWFsZSIsImNoYXRSb29tcyI6W119LCJpYXQiOjE3MDgwOTIxNjZ9.CFWsMPw1ORq23FF6v-e-K9eCuYNuy3yeqICopDf0pGQ",
"quizResults": [
{
"category": "diabetes",
"results": [
{
"qid": 1,
"content": "Jane Smith",
"result": true,
"comment": "Great job! Keep it up!"
},
{
"qid": 2,
"content": "Jane Smith",
"result": true,
"comment": "Great job! Keep it up!"
},
{
"qid": 3,
"content": "Jane Smith",
"result": false,
"comment": "정답은 false입니다. 식사 후 혈당이 급격하게 오르는 것을 막기 위해서는 GI지수가 낮은 음식을 섭취해야 합니다."
},
{
"qid": 4,
"content": "Jane Smith",
"result": true,
"comment": "Great job! Keep it up!"
},
{
"qid": 5,
"content": "Jane Smith",
"result": false,
"comment": "정답은 true입니다."
}
]
}
]
},
"medicals": [
{
"_id": "65cf5ec0741c7a612cf54ab3",
"uid": "user2",
"Gender": 1,
"AGE": 36,
"Urea": 5.7,
"Cr": 56,
"HbA1c": 5.9,
"Chol": 5.2,
"TG": 2.2,
"HDL": 1.5,
"LDL": 3.3,
"VLDL": 1.2,
"BMI": 22,
"timestamp": "2024-02-18T15:21:55.276Z"
},
{
"_id": "65cf5ec0741c7a612cf54ab4",
"uid": "user2",
"Gender": 2,
"AGE": 36,
"Urea": 4.7,
"Cr": 46,
"HbA1c": 4.9,
"Chol": 4.2,
"TG": 1.2,
"HDL": 1.2,
"LDL": 2.3,
"VLDL": 0.8,
"BMI": 20,
"timestamp": "2024-02-18T15:21:55.276Z"
},
{
"_id": "65cf5ec0741c7a612cf54ab5",
"uid": "user2",
"Gender": 12,
"AGE": 36,
"Urea": 5.7,
"Cr": 56,
"HbA1c": 5.9,
"Chol": 5.2,
"TG": 2.2,
"HDL": 1.5,
"LDL": 3.3,
"VLDL": 1.2,
"BMI": 22,
"timestamp": "2024-02-18T15:21:55.276Z"
},
{
"_id": "65cf5ec0741c7a612cf54ab6",
"uid": "user2",
"Gender": 12,
"AGE": 37,
"Urea": 5.7,
"Cr": 56,
"HbA1c": 5.9,
"Chol": 5.2,
"TG": 2.2,
"HDL": 1.5,
"LDL": 3.3,
"VLDL": 1.2,
"BMI": 22,
"timestamp": "2024-02-18T15:21:55.277Z"
}
]
}
}
}
},
"400": {
"description": "Invalid User Type, 의사 아이디로만 접근 가능합니다."
},
"500": {
"description": "Internal Server Error"
}
}
}
},
"/mypage": {
"get": {
"description": "환자와 의사가 각자의 mypage를 조회하는 API로 해당 API에서 응답을 통해서 다른 데이터를 받고 다른 페이지로 이동한다. 환자의 경우 자신의 medical 정보까지 같이 볼 수 있다. 퀴즈로 바뀔수도...?",
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"example": {
"isDoctor": false,
"medicals": [
{
"_id": "65cf5ec0741c7a612cf54ab3",
"uid": "user2",
"Gender": 1,
"AGE": 36,
"Urea": 5.7,
"Cr": 56,
"HbA1c": 5.9,
"Chol": 5.2,
"TG": 2.2,
"HDL": 1.5,
"LDL": 3.3,
"VLDL": 1.2,
"BMI": 22,
"timestamp": "2024-02-18T15:29:01.472Z"
},
{
"_id": "65cf5ec0741c7a612cf54ab4",
"uid": "user2",
"Gender": 2,
"AGE": 36,
"Urea": 4.7,
"Cr": 46,
"HbA1c": 4.9,
"Chol": 4.2,
"TG": 1.2,
"HDL": 1.2,
"LDL": 2.3,
"VLDL": 0.8,
"BMI": 20,
"timestamp": "2024-02-18T15:29:01.472Z"
},
{
"_id": "65cf5ec0741c7a612cf54ac0",
"uid": "user2",
"Gender": 1,
"AGE": 37,
"Urea": 5.7,
"Cr": 56,
"HbA1c": 5.9,
"Chol": 5.2,
"TG": 2.2,
"HDL": 1.5,
"LDL": 3.3,
"VLDL": 1.2,
"BMI": 22,
"timestamp": "2024-02-18T15:29:01.473Z"
}
],
"clinics": [
{
"doctor": {
"name": "Emily Davis",
"specialization": "내과"
},
"patient": {
"name": "John Doel",
"age": 40,
"gender": "Male"
},