-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdata.json
More file actions
18757 lines (18757 loc) · 476 KB
/
data.json
File metadata and controls
18757 lines (18757 loc) · 476 KB
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
[
{
"id": "G11.9",
"name": "유전성 소뇌의 병",
"subname": "Hereditary cerebellar disease",
"symptoms": [
"보행 장애",
"조음곤란증",
"시신경 위축",
"눈근육마비",
"망막 색소 변성",
"복시",
"감각상실",
"인식장애"
],
"affected": ["신경", "근육", "눈"],
"supported": true,
"required": false,
"code": "V123"
},
{
"id": "H51.8",
"name": "동안실행증(失行症), 코간형",
"subname": "Ocular motor apraxia, Cogan type",
"symptoms": [
"수평 안구 운동의 장애와 이를 보상하기 위한 머리의 움직임\r\n사시",
"발달지연",
"언어장애\r\n드물게 신장 기능 이상"
],
"affected": ["뇌", "신경", "눈"],
"supported": true,
"required": false,
"code": "V900"
},
{
"id": "Q93.5",
"name": "18 단완 염색체 결손",
"subname": "18 short arm chromosome Deletion",
"symptoms": [
"근육긴장저하증",
"뇌이상",
"머리얼굴이상형태증",
"성장지연(저신장)",
"심장이상",
"언어지연",
"정신지연"
],
"affected": ["뇌", "심장", "골격", "귀", "눈", "두개골", "입"],
"supported": true,
"required": false,
"code": "V900"
},
{
"id": "D61.0",
"name": "가족성 저형성빈혈",
"subname": "Familial hypoplastic anaemia",
"symptoms": [
"검은 반점",
"비장이 나이에 비해 작음",
"소두증",
"소안구증",
"쉽게 멍듦",
"신장 기형",
"알 수 없는 코피",
"엄지손가락과 판 기형"
],
"affected": ["신장", "혈관(혈액)", "골격", "눈", "피부"],
"supported": true,
"required": false,
"code": "V023"
},
{
"id": "G11.9",
"name": "유전성 소뇌의 변성",
"subname": "Hereditary cerebellar degeneration",
"symptoms": [
"보행 장애",
"조음곤란증",
"시신경 위축",
"눈근육마비",
"망막 색소 변성",
"복시",
"감각상실",
"인식장애"
],
"affected": ["신경", "근육", "눈"],
"supported": true,
"required": false,
"code": "V123"
},
{
"id": "Q91.6",
"name": "13삼염색체증, 전위",
"subname": "Trisomy 13, translocation",
"symptoms": [
"발달 지연",
"정신 지체",
"구순열",
"구개열",
"잠복고환증",
"손가락과 발가락 기형",
"머리와 얼굴의 기형(소하악증",
"소두증",
"전전뇌증)",
"소안구증. 홍채결손",
"망막이형성증",
"내안각주름",
"수두증",
"통앞뇌증",
"척수막탈출증",
"동맥관열림증",
"우심증",
"말굽콩팥",
"골격 이상 "
],
"affected": ["뇌", "신장", "심장", "눈", "두개골", "입", "척추"],
"supported": true,
"required": false,
"code": "V160"
},
{
"id": "E27.1",
"name": "원발성 부신피질부전",
"subname": "Primary adrenocortical insufficiency",
"symptoms": [
"구토",
"급성 복통",
"발열",
"설사",
"식욕 부진",
"오심",
"저혈당",
"저혈압",
"체중 감소"
],
"affected": ["부신", "없음"],
"supported": true,
"required": false,
"code": "V116"
},
{
"id": "Q87.2",
"name": "클리펠-트레노우네이-베버 증후군",
"subname": "Klippel-Trénaunay-Weber syndrome",
"symptoms": ["피하 혈관종", "정맥류성 정맥", "사지의 편측 비대 "],
"affected": [
"대장",
"생식기",
"소장",
"신장",
"심장",
"폐",
"혈관(혈액)",
"골격",
"척추",
"피부"
],
"supported": true,
"required": false,
"code": "V243"
},
{
"id": "없음",
"name": "알란-헌든-더들리 증후군",
"subname": "Allan-Herndon-Dudley syndrome",
"symptoms": [
"심한 지적장애",
"말더듬증",
"근육긴장저하증",
"강직성 하반신 마비",
"반사이상항진",
"무정위운동"
],
"affected": ["없음", "골격", "근육"],
"supported": true,
"required": false,
"code": "V900"
},
{
"id": "없음",
"name": "엠마누엘 증후군",
"subname": "Emanuel syndrome",
"symptoms": [
"다양한 선청성 기형 및 근 긴장 저하",
"섭식장애",
"성장장애가 발생하며 성장하면서 심한 발달지연 및 지능장애를 보임"
],
"affected": ["신장", "심장", "혈관(혈액)", "귀", "근육", "두개골", "입"],
"supported": true,
"required": false,
"code": "V900"
},
{
"id": "M34.1",
"name": "크레스트증후군",
"subname": "CR(E)ST syndrome",
"symptoms": [
"피부가 단단하고 두꺼워짐",
"손가락",
"발가락이 부음",
"관절통 및 관절 경직"
],
"affected": ["없음", "골격", "근육", "피부"],
"supported": true,
"required": false,
"code": "V138"
},
{
"id": "없음",
"name": "11번 염색체 장완의 말단부 삼염색체증",
"subname": "Distal trisomy 11q",
"symptoms": [
"성장지연",
"발달지연",
"머리얼굴이상",
"중추신경계 기형",
"심장기형",
"골격계 기형",
"저신장",
"발작",
"자폐 성향",
"환청 등"
],
"affected": [
"뇌",
"생식기",
"신장",
"심장",
"골격",
"귀",
"눈",
"두개골",
"코"
],
"supported": true,
"required": true,
"code": "V901"
},
{
"id": "Q04.3",
"name": "활택뇌증",
"subname": "Lissencephaly",
"symptoms": [
"근육 경련과 발작",
"발육장애",
"손",
"손가락 또는 발가락의 기형",
"심한 발달장애",
"연하장애",
"이상 소두증",
"정신운동장애",
"눈의 기형"
],
"affected": ["뇌", "신경", "두개골"],
"supported": true,
"required": false,
"code": "V900"
},
{
"id": "E73.0",
"name": "선천성 젖당분해효소결핍",
"subname": "Congenital lactase deficiency",
"symptoms": ["설사", "탈수"],
"affected": ["소장", "없음"],
"supported": true,
"required": false,
"code": "V117"
},
{
"id": "Q93.3",
"name": "4 단완 염색체 부분 결손",
"subname": "Partial deletion of the short arm of chromosome 4",
"symptoms": [
"난치성 간질",
"소악증",
"심기형",
"소두증",
"장두증(dolichocephaly)",
"전두골 돌출",
"지능 저하",
"청력 이상",
"크고 넓은 콧등"
],
"affected": [
"뇌",
"생식기",
"신경",
"심장",
"골격",
"귀",
"근육",
"눈",
"두개골",
"입",
"척추",
"코"
],
"supported": true,
"required": false,
"code": "V900"
},
{
"id": "없음",
"name": "9번 염색체 단완의 결손",
"subname": "Deletion of short arm of chromosome 9",
"symptoms": [
"발달지연",
"지능저하",
"성장 장애",
"근육긴장저하",
"특이적인 얼굴 형태",
"심장기형",
"척주측만증",
"생식기 기형",
"위식도 역류",
"잦은 호흡기와 귀의 감염"
],
"affected": [
"뇌",
"대장",
"생식기",
"소장",
"신경",
"신장",
"심장",
"폐",
"골격",
"귀",
"눈",
"두개골",
"코"
],
"supported": true,
"required": true,
"code": "V901"
},
{
"id": "D80.4",
"name": "면역글로불린M의 선택적 결핍",
"subname": "Selective deficiency of immunoglobulin M[IgM]",
"symptoms": [
"뇌수막염",
"상기도감염",
"설사",
"알레르기질환",
"자가면역질환",
"패혈증",
"피부염",
"악성 종양 등"
],
"affected": ["뇌", "대장", "비장", "소장", "폐", "혈관(혈액)", "피부"],
"supported": true,
"required": false,
"code": "V111"
},
{
"id": "Q82.4",
"name": "(무한성) 외배엽형성이상",
"subname": "Ectodermal dysplasia (anhidrotic)",
"symptoms": [
"모발 형성이상",
"발한 장애",
"손발톱 형성이상",
"치아의 이상",
"피부의 이상"
],
"affected": ["갑상선", "식도", "신경", "없음"],
"supported": true,
"required": false,
"code": "V900"
},
{
"id": "없음",
"name": "NALCN 관련 장애",
"subname": "NALCN-related disorder",
"symptoms": ["선천성 사지 및 안면 구축", "근육긴장저하", "발달지연"],
"affected": ["뇌", "생식기", "신경", "골격", "귀", "근육", "눈", "두개골"],
"supported": true,
"required": false,
"code": "V900"
},
{
"id": "없음",
"name": "1번 염색체 단완의 중복 증후군",
"subname": "1p duplication syndrome",
"symptoms": [""],
"affected": ["", ""],
"supported": true,
"required": true,
"code": "V901"
},
{
"id": "E70.3",
"name": "헤르만스키-푸들라크증후군",
"subname": "Hermansky-Pudlak syndrome",
"symptoms": [
"안피부형 백색증",
"혈소판 기능저하",
"폐섬유화증",
"육아종성 대장염",
"심근병증"
],
"affected": ["대장", "심장", "폐", "혈관(혈액)", "눈", "피부"],
"supported": true,
"required": false,
"code": "V117"
},
{
"id": "Q20.3",
"name": "심실대혈관연결불일치",
"subname": "Discordant ventriculoarterial connection",
"symptoms": ["발한", "부정맥", "빈맥", "빈호흡", "청색증"],
"affected": ["심장", "폐", "없음"],
"supported": true,
"required": false,
"code": "V144"
},
{
"id": "G61.0",
"name": "길랭-바레증후군",
"subname": "Guillain-Barré syndrome",
"symptoms": [
"눈과 입술 등 얼굴 근육이 쇠약해 지거나 마비",
"운동 신경에 염증",
"위로 올라가는 마비(ascending paralysis)"
],
"affected": ["신경", "근육"],
"supported": true,
"required": false,
"code": "V126"
},
{
"id": "없음",
"name": "페인골드 증후군 유형 1",
"subname": "Feingold syndrome type 1",
"symptoms": [""],
"affected": ["", ""],
"supported": true,
"required": false,
"code": "V900"
},
{
"id": "D68.2",
"name": "제10인자[스튜어트-프라워]의 결핍",
"subname": "Ⅹ[Stuart-Prower] deficiency of factor",
"symptoms": ["출혈성 경향"],
"affected": ["혈관(혈액)", "없음"],
"supported": true,
"required": false,
"code": "V009"
},
{
"id": "없음",
"name": "PCDH 19 관련 뇌전증 증후군",
"subname": "PCDH 19-related epilepsy syndrome",
"symptoms": [
"뇌전증",
"발달 지연",
"지적 장애",
"행동 장애",
"자폐적 행동",
"근긴장 저하증"
],
"affected": ["뇌", "근육"],
"supported": true,
"required": false,
"code": "V900"
},
{
"id": "Q17.2",
"name": "소이증(小耳症)",
"subname": "Microtia",
"symptoms": [
"선천성 소이증은 태아 초기에 귀를 형성하는 조직이 덜 발달되어 초래되는 기형이다."
],
"affected": ["없음", "귀"],
"supported": true,
"required": false,
"code": "V291"
},
{
"id": "Q75.0",
"name": "뾰족머리증",
"subname": "Oxycephaly",
"symptoms": ["두개골 미성숙 봉합"],
"affected": ["없음", "두개골"],
"supported": true,
"required": false,
"code": "V265"
},
{
"id": "없음",
"name": "1번 염색체 장완 21.1 부분의 중복 증후군",
"subname": "1q21.1 duplication syndrome",
"symptoms": ["발달지연", "지능장애", "자폐", "큰머리", "다지증"],
"affected": ["뇌", "신경", "골격", "두개골"],
"supported": true,
"required": true,
"code": "V901"
},
{
"id": "없음",
"name": "크론카이드-카나다 증후군",
"subname": "Cronkhite-Canada syndrome",
"symptoms": [
"만성설사",
"영양장애",
"위장관의 용종증",
"손발톱의 변화",
"탈모"
],
"affected": ["대장", "소장", "위", "눈", "피부"],
"supported": true,
"required": false,
"code": "V900"
},
{
"id": "K50.8",
"name": "소장 및 대장 모두의 크론병",
"subname": "Crohn’s disease of both small and large intestine",
"symptoms": [
"구토(vomiting)",
"발열",
"복통",
"설사",
"식욕감퇴",
"오심(nausea)",
"직장출혈",
"체중감소"
],
"affected": ["없음", "없음"],
"supported": true,
"required": false,
"code": "V130"
},
{
"id": "G11.8",
"name": "기타 유전성 운동실조",
"subname": "Other hereditary ataxias",
"symptoms": [
"보행 장애",
"조음곤란증",
"시신경 위축",
"눈근육마비",
"망막 색소 변성",
"복시",
"감각상실",
"인식장애"
],
"affected": ["신경", "근육", "눈"],
"supported": true,
"required": false,
"code": "V123"
},
{
"id": "없음",
"name": "X 염색체장완의 28부분의 중복 증후군",
"subname": "Chromosome Xq28 duplication syndrome",
"symptoms": [
"성별에 따른 질환의 중증도가 다름 (남자 > 여자)",
"지적장애",
"느린 운동발달",
"하체 강직",
"반복적인 호흡기계 감염",
"간질발작",
"자폐증",
"위장기능 장애",
"얼굴기형"
],
"affected": ["뇌", "없음"],
"supported": true,
"required": true,
"code": "V901"
},
{
"id": "없음",
"name": "쿨렌-드브리스 증후군",
"subname": "Koolen-de Vries syndrome",
"symptoms": [""],
"affected": ["", ""],
"supported": true,
"required": false,
"code": "V900"
},
{
"id": "G71.2",
"name": "다발심 병",
"subname": "Multicore disease",
"symptoms": [
"저긴장증",
"근위약",
"눈근육마비",
"척추강직",
"척추측만",
"호흡곤란 "
],
"affected": ["심장", "근육", "눈", "척추"],
"supported": true,
"required": false,
"code": "V012"
},
{
"id": "Q75.1",
"name": "크루존병",
"subname": "Crouzon’s disease",
"symptoms": [
"두개안면(머리와 얼굴) 뼈 형성부전",
"머리뼈붙음증",
"구개열",
"구순열",
"좁고 높은 입천장",
"사시",
"안구진탕증",
"홍채결손",
"청력 장애",
"척추뼈융합",
"감각신경난청 "
],
"affected": ["뇌", "눈", "두개골", "입", "코"],
"supported": true,
"required": false,
"code": "V151"
},
{
"id": "E27.1",
"name": "애디슨병",
"subname": "Addison’s disease",
"symptoms": [
"구토",
"발열",
"복통",
"설사",
"식욕 저하",
"오심",
"저혈당증",
"저혈압",
"주근깨",
"주름이 생기며 점막이 약해짐",
"탈수",
"피로",
"피부"
],
"affected": ["부신", "피부"],
"supported": true,
"required": false,
"code": "V116"
},
{
"id": "없음",
"name": "근긴장이상을 동반한 고망간혈증",
"subname": "Hypermanganesemia with dystonia",
"symptoms": ["근긴장이상이나 떨림", "어눌한 발음", "파킨슨 증상 등"],
"affected": ["간", "뇌", "혈관(혈액)", "골격", "척추"],
"supported": true,
"required": false,
"code": "V900"
},
{
"id": "E34.8",
"name": "송과선 기능이상",
"subname": "Pineal gland dysfunction",
"symptoms": ["수면주기의 이상"],
"affected": ["뇌하수체", "송과체", "혈관(혈액)", "근육", "피부"],
"supported": true,
"required": false,
"code": "V166"
},
{
"id": "G71.0",
"name": "지대 근디스트로피",
"subname": "Limb-girdle muscular dystrophy",
"symptoms": ["가성비대(Pseudohypertrophy)", "관절구축", "보행장애", "요통"],
"affected": ["없음", "근육"],
"supported": true,
"required": false,
"code": "V012"
},
{
"id": "G23.1",
"name": "진행성 핵상안근마비 [스틸-리차드슨-올스제위스키]",
"subname": "Progressive supranuclear ophthalmoplegia [Steele-Richardson-Olszewski]",
"symptoms": [
"신체균형실조",
"보행 이상",
"안구운동마비",
"기분",
"행동",
"성격의 변화"
],
"affected": ["뇌", "눈"],
"supported": true,
"required": false,
"code": "V190"
},
{
"id": "Q87.1",
"name": "코케인 증후군",
"subname": "Cockayne syndrome",
"symptoms": [
"성장 지연",
"왜소증",
"광과민성(Photosensitivity)",
"나이에 비해 조숙해 보이는 외모(조로증)",
"소두증",
"백내장",
"시신경위축",
"망막변성",
" 귀의 기형",
"난청",
"새부리 모양의 코",
"턱나옴증",
"치아이상",
"피부 색소 침착",
"척추후만증",
"저한증",
"청색증",
"진전",
"운동실조",
"조화 운동 불능증",
"고혈압",
"동맥경화성 질환",
"간비대",
"지적장애 "
],
"affected": [
"신경",
"혈관(혈액)",
"골격",
"귀",
"눈",
"두개골",
"척추",
"피부"
],
"supported": true,
"required": false,
"code": "V158"
},
{
"id": "없음",
"name": "ALS 결핍증",
"subname": "Acid-Labile subunit deficiency (ALSD)",
"symptoms": ["저신장", "사춘기 지연"],
"affected": ["생식기", "골격"],
"supported": true,
"required": false,
"code": "V900"
},
{
"id": "Q23.3",
"name": "선천성 승모판기능부전",
"subname": "Congenital mitral insufficiency",
"symptoms": ["기좌호흡", "폐렴", "호흡곤란", "심부전"],
"affected": ["심장", "없음"],
"supported": true,
"required": false,
"code": "V147"
},
{
"id": "Q23.9",
"name": "대동맥판 및 승모판의 상세불명의 선천기형",
"subname": "Congenital malformation of aortic and mitral valves, unspecified",
"symptoms": ["기좌호흡", "폐렴", "호흡곤란", "심부전"],
"affected": ["심장", "없음"],
"supported": true,
"required": false,
"code": "V147"
},
{
"id": "D66",
"name": "혈우병 NOS",
"subname": "Haemophilia NOS",
"symptoms": [
"자연적인 내출혈(Spontaneous internal bleeding)",
"멍이 쉽게 든다",
"긴 출혈시간",
"혈뇨증"
],
"affected": ["혈관(혈액)", "없음"],
"supported": true,
"required": false,
"code": "V009"
},
{
"id": "Q23.0",
"name": "선천성 대동맥판폐쇄",
"subname": "Congenital aortic atresia",
"symptoms": ["심잡음", "청색증", "호흡 곤란", "대사성 산증", "쇼크"],
"affected": ["심장", "혈관(혈액)", "없음"],
"supported": true,
"required": false,
"code": "V147"
},
{
"id": "E24.0",
"name": "뇌하수체-의존 쿠싱병",
"subname": "Pituitary-dependent Cushing’s disease",
"symptoms": ["피로", "대사 장애", "뼈 통증", "반상 출혈"],
"affected": ["뇌하수체", "부신", "혈관(혈액)", "골격", "근육", "피부"],
"supported": true,
"required": false,
"code": "V114"
},
{
"id": "없음",
"name": "18번 염색체 단완의 사염색체증",
"subname": "Tetrasomy 18p",
"symptoms": [
"유아기의 섭식 곤란",
"발달 지연",
"지적 장애",
"근긴장도의 변화",
"독특한 얼굴 특징 및 기타 선천적 결함"
],
"affected": ["뇌", "생식기", "신경", "심장", "근육", "입"],
"supported": true,
"required": true,
"code": "V901"
},
{
"id": "Q23.0",
"name": "선천성 대동맥판협착",
"subname": "Congenital aortic stenosis",
"symptoms": [""],
"affected": ["", ""],
"supported": true,
"required": false,
"code": "V147"
},
{
"id": "E84.1",
"name": "원위장폐쇄증후군",
"subname": "Distal intestinal obstruction syndrome",
"symptoms": ["갑작스럽게 발생하는 복통", "구토"],
"affected": ["소장", "폐", "없음"],
"supported": true,
"required": false,
"code": "V120"
},
{
"id": "D69.1",
"name": "베르나르-술리에[거대혈소판]증후군",
"subname": "Bernard-Soulier[giant platelet] syndrome",
"symptoms": [
"멍",
"붉은 쌕 또는 보라색의 자반이 피부에 형성",
"비강 출혈의 시간 연장",
"여성의 경우 많은 양의 월경",
"외상시 "
],
"affected": ["혈관(혈액)", "없음"],
"supported": true,
"required": false,
"code": "V106"
},
{
"id": "없음",
"name": "튜블린병증",
"subname": "Tubulinopathies",
"symptoms": [
"뇌 형성 이상",
"발달 지연",
"지적 장애",
"뇌전증",
"소두증",
"사시",
"시신경 저형성증",
"진행성 감각운동 다발성신경병증",
"관절 구축"
],
"affected": ["뇌", "송과체", "신경", "골격", "근육", "눈"],
"supported": true,
"required": false,
"code": "V900"
},
{
"id": "Q81.1",
"name": "치사성 수포성 표피박리증",
"subname": "Epidermolysis bullosa letalis",
"symptoms": [
"사소한 외상에도 피부와 점막에 동통을 동반하는 수포가 쉽게 생김",
"근골격 계의 기형",
"빈혈",
"성장장애"
],
"affected": ["없음", "피부"],
"supported": true,
"required": false,
"code": "V184"
},
{
"id": "E75.0",
"name": "GM₂-강글리오시드증 NOS",
"subname": "GM₂gangliosidosis NOS",
"symptoms": [
"발달 지연",
"퇴행",
"지적 장애",
"뇌전증",
"실조증",
"근긴장이상증",
"정신병",
"근육 소모"
],
"affected": ["뇌", "신경", "근육", "눈"],
"supported": true,
"required": false,
"code": "V117"
},
{
"id": "M88.8",
"name": "기타 뼈의 파젯병",
"subname": "Paget’s disease of other bones",
"symptoms": ["침범된 부위의 통증. 관절염", "뼈의 약화 골절 및 변형."],
"affected": ["뇌", "없음"],
"supported": true,
"required": false,
"code": "V213"
},
{
"id": "없음",
"name": "두개골간단형성부전증",
"subname": "Craniometaphyseal dysplasia",
"symptoms": [
"머리와 얼굴 부위의 구별 가능한 이상",
"뇌신경 장애",
"장 뼈의 기형"
],
"affected": ["신경", "없음"],
"supported": true,
"required": false,
"code": "V900"
},
{
"id": "E76.1",
"name": "Ⅱ형 점액다당류증",
"subname": "Mucopolysaccharidosis, type Ⅱ",
"symptoms": [
"근골격계 변형 및 구축",
"얼굴 모양 변형",
"청력 및 시각 이상",
"수면무호흡증",
"잦은 호흡기계 감염",
"심근기능장애",
"심장판막이상",
"수두증"
],
"affected": [
"뇌",
"대장",
"소장",
"신경",
"심장",
"십이지장",
"위",
"폐",
"혈관(혈액)",
"골격",
"근육",
"눈",
"두개골",
"입",
"코"
],
"supported": true,
"required": false,
"code": "V117"
},
{
"id": "없음",
"name": "큐라리노 증후군",
"subname": "Currarino syndrome",
"symptoms": ["앞엉치뼈덩이", "엉치뼈의 무형성", "항문직장기형"],
"affected": ["생식기", "신경", "신장", "척추"],
"supported": true,
"required": false,
"code": "V900"
},
{
"id": "L10.0",
"name": "보통천포창",
"subname": "Pemphigus vulgaris",
"symptoms": ["피부의 수포", "미란", "통증"],
"affected": ["대장", "식도", "눈", "입", "피부"],
"supported": true,
"required": false,
"code": "V132"
},
{
"id": "M32.1",
"name": "신장침범 동반 전신홍반루푸스",
"subname": "Systemic lupus erythematosus with kidney involvement",
"symptoms": [
"혈뇨",
"단백뇨",
"다리 부종",
"고혈압",
"혈중 크레아티닌 상승 등"
],
"affected": ["신장", "없음"],