-
Notifications
You must be signed in to change notification settings - Fork 147
/
diagnoses.ts
81 lines (80 loc) · 1.91 KB
/
diagnoses.ts
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
const data = [
{
"code": "M24.2",
"name": "Disorder of ligament",
"latin": "Morbositas ligamenti"
},
{
"code": "M51.2",
"name": "Other specified intervertebral disc displacement",
"latin": "Alia dislocatio disci intervertebralis specificata"
},
{
"code": "S03.5",
"name":
"Sprain and strain of joints and ligaments of other and unspecified parts of head",
"latin":
"Distorsio et/sive distensio articulationum et/sive ligamentorum partium aliarum sive non specificatarum capitis"
},
{
"code": "J10.1",
"name":
"Influenza with other respiratory manifestations, other influenza virus codeentified",
"latin":
"Influenza cum aliis manifestationibus respiratoriis ab agente virali codeentificato"
},
{
"code": "J06.9",
"name": "Acute upper respiratory infection, unspecified",
"latin": "Infectio acuta respiratoria superior non specificata"
},
{
"code": "Z57.1",
"name": "Occupational exposure to radiation"
},
{
"code": "N30.0",
"name": "Acute cystitis",
"latin": "Cystitis acuta"
},
{
"code": "H54.7",
"name": "Unspecified visual loss",
"latin": "Amblyopia NAS"
},
{
"code": "J03.0",
"name": "Streptococcal tonsillitis",
"latin": "Tonsillitis (palatina) streptococcica"
},
{
"code": "L60.1",
"name": "Onycholysis",
"latin": "Onycholysis"
},
{
"code": "Z74.3",
"name": "Need for continuous supervision"
},
{
"code": "L20",
"name": "Atopic dermatitis",
"latin": "Atopic dermatitis"
},
{
"code": "F43.2",
"name": "Adjustment disorders",
"latin": "Perturbationes adaptationis"
},
{
"code": "S62.5",
"name": "Fracture of thumb",
"latin": "Fractura [ossis/ossium] pollicis"
},
{
"code": "H35.29",
"name": "Other proliferative retinopathy",
"latin": "Alia retinopathia proliferativa"
}
];
export default data;