-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinput_data_dictionary.json
171 lines (171 loc) · 5.81 KB
/
input_data_dictionary.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
{"placements" : {
"fields": [
{
"student_cohort": [
{
"name": "student_cohort",
"description": "Cohort of the student, containing university, qualification and year of admission, in the format [University Name]_[Qualification] [MonthYear of Admission]",
"type": "string",
"Example": "UniversityA_BSc Jan99"
}
],
"placement_name": [
{
"name": "placement_name",
"description": "Name of the placement, usually referring to the year and number of the placement",
"type": "string",
"Example": "P1, E1"
}
],
"placement_start_date": [
{
"name": "placement_start_date",
"description": "Date on which the placement should start",
"type": "datetime",
"Example": "01/01/1990"
}
],
"placement_len_weeks": [
{
"name": "placement_len_weeks",
"description": "Length of the placement in weeks",
"type": "int64",
"Example": "6"
}
]
}
]
},
"students": {
"fields": [
{
"student_id": [
{
"name": "student_id",
"description": "Unique identifier for the student",
"type": "string",
"Example": "Student123"
}
],
"student_cohort": [
{
"name": "student_cohort",
"description": "Cohort of the student, containing university, qualification and year of admission, in the format [University Name]_[Qualification] [MonthYear of Admission]",
"type": "string",
"Example": "UniversityA_BSc Jan99"
}
],
"university": [
{
"name": "university",
"description": "University of study",
"type": "string",
"Example": "UniversityA"
}
],
"qualification": [
{
"name": "qualification",
"description": "Qualification the student is studying for",
"type": "string",
"Example": "BSc"
}
],
"year": [
{
"name": "year",
"description": "Year of study",
"type": "int64",
"Example": "1"
}
],
"prev_placements": [
{
"name": "prev_placements",
"description": "A list of previous wards that the student has been on placement at, in the format ['wardname1','wardname2','wardname3']",
"type": "list",
"Example": "['ward1','ward2','ward3']"
}
],
"allowable_covid_status": [
{
"name": "allowable_covid_status",
"description": "The level of covid risk that the student can tolerate",
"type": "string",
"Example": "Low/Medium"
}
]
}
]
},
"wards":{
"fields": [
{
"ward_name": [
{
"name": "ward_name",
"description": "Name of the ward",
"type": "string",
"Example": "Ward1"
}
],
"ward_speciality": [
{
"name": "ward_speciality",
"description": "The specialisation of the ward",
"type": "string",
"Example": "Accident and Emergency"
}
],
"education_audit_exp": [
{
"name": "education_audit_exp",
"description": "Expiry date of the Education Audit",
"type": "datetime",
"Example": "01/01/1990"
}
],
"covid_status": [
{
"name": "covid_status",
"description": "Level of covid risk that the ward holds",
"type": "string",
"Example": "Medium/High"
}
],
"capacity_num": [
{
"name": "capacity_num",
"description": "Overall capacity of the ward",
"type": "int64",
"Example": "4"
}
],
"p1_cap": [
{
"name": "p1_cap",
"description": "The number of year 1 (or part 1) students that the ward can accommodate",
"type": "int64",
"Example": "2"
}
],
"p2_cap": [
{
"name": "p2_cap",
"description": "The number of year 2 (or part 2) students that the ward can accommodate",
"type": "int64",
"Example": "2"
}
],
"p3_cap": [
{
"name": "p3_cap",
"description": "The number of year 3 (or part 3) students that the ward can accommodate",
"type": "int64",
"Example": "2"
}
]
}
]
}
}