-
Notifications
You must be signed in to change notification settings - Fork 147
/
better-patients.ts
115 lines (113 loc) · 3.13 KB
/
better-patients.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
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
import { Patient, Gender } from '../src/types';
const patients: Patient[] = [
{
id: 'd2773336-f723-11e9-8f0b-362b9e155667',
name: 'John McClane',
dateOfBirth: '1986-07-09',
ssn: '090786-122X',
gender: Gender.Male,
occupation: 'New york city cop',
entries: [
{
id: 'd811e46d-70b3-4d90-b090-4535c7cf8fb1',
date: '2015-01-02',
type: 'Hospital',
specialist: 'MD House',
diagnosisCodes: ['S62.5'],
description:
"Healing time appr. 2 weeks. patient doesn't remember how he got the injury.",
discharge: {
date: '2015-01-16',
criteria: 'Thumb has healed.',
},
},
],
},
{
id: 'd2773598-f723-11e9-8f0b-362b9e155667',
name: 'Martin Riggs',
dateOfBirth: '1979-01-30',
ssn: '300179-777A',
gender: Gender.Male,
occupation: 'Cop',
entries: [
{
id: 'fcd59fa6-c4b4-4fec-ac4d-df4fe1f85f62',
date: '2019-08-05',
type: 'OccupationalHealthcare',
specialist: 'MD House',
employerName: 'HyPD',
diagnosisCodes: ['Z57.1', 'Z74.3', 'M51.2'],
description:
'Patient mistakenly found himself in a nuclear plant waste site without protection gear. Very minor radiation poisoning. ',
sickLeave: {
startDate: '2019-08-05',
endDate: '2019-08-28',
},
},
],
},
{
id: 'd27736ec-f723-11e9-8f0b-362b9e155667',
name: 'Hans Gruber',
dateOfBirth: '1970-04-25',
ssn: '250470-555L',
gender: Gender.Male,
occupation: 'Technician',
entries: [],
},
{
id: 'd2773822-f723-11e9-8f0b-362b9e155667',
name: 'Dana Scully',
dateOfBirth: '1974-01-05',
ssn: '050174-432N',
gender: Gender.Female,
occupation: 'Forensic Pathologist',
entries: [
{
id: 'b4f4eca1-2aa7-4b13-9a18-4a5535c3c8da',
date: '2019-10-20',
specialist: 'MD House',
type: 'HealthCheck',
description: 'Yearly control visit. Cholesterol levels back to normal.',
healthCheckRating: 0,
},
{
id: 'fcd59fa6-c4b4-4fec-ac4d-df4fe1f85f62',
date: '2019-09-10',
specialist: 'MD House',
type: 'OccupationalHealthcare',
employerName: 'FBI',
description: 'Prescriptions renewed.',
},
{
id: '37be178f-a432-4ba4-aac2-f86810e36a15',
date: '2018-10-05',
specialist: 'MD House',
type: 'HealthCheck',
description:
'Yearly control visit. Due to high cholesterol levels recommended to eat more vegetables.',
healthCheckRating: 1,
},
],
},
{
id: 'd2773c6e-f723-11e9-8f0b-362b9e155667',
name: 'Matti Luukkainen',
dateOfBirth: '1971-04-09',
ssn: '090471-8890',
gender: Gender.Male,
occupation: 'Digital evangelist',
entries: [
{
id: '54a8746e-34c4-4cf4-bf72-bfecd039be9a',
date: '2019-05-01',
specialist: 'Dr Byte House',
type: 'HealthCheck',
description: 'Digital overdose, very bytestatic. Otherwise healthy.',
healthCheckRating: 0,
},
],
},
];
export default patients;