-
Notifications
You must be signed in to change notification settings - Fork 5
/
openapi.yaml
311 lines (303 loc) · 8.2 KB
/
openapi.yaml
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
openapi: 3.0.1
info:
title: Scenario 1 API
description: This is the API to the FSI Autism Hackathon Scenario 1, IoT.
version: 1.0.0
tags:
- name: Patients
description: Information regarding patients
- name: Users
description: Information about the therapists, parents, teachers, and other guardians who may be responsible for a patient.
components:
schemas:
Metric:
properties:
id:
type: string
format: uuid
objectiveId:
$ref: "#/components/schemas/ObjectiveId"
startTime:
type: string
format: date-time
example: "2017-07-21T17:32:28Z"
endTime:
type: string
format: date-time
nullable: true
example: "2017-07-21T17:32:28Z"
Objective:
properties:
id:
$ref: "#/components/schemas/ObjectiveId"
patientId:
$ref: "#/components/schemas/PatientId"
description:
type: string
example: Tantrum Duration
type:
type: string
enum:
- Counter
- Duration
- Latency
required:
- id
- patientId
- description
- type
ObjectiveId:
type: string
format: uuid
Patient:
properties:
id:
$ref: "#/components/schemas/PatientId"
firstName:
type: string
example: Jane
surname:
type: string
example: Doe
required:
- id
- surname
PatientId:
type: string
format: uuid
User:
properties:
id:
$ref: "#/components/schemas/UserId"
username:
type: string
example: jdoe
firstName:
type: string
example: Jane
surname:
type: string
example: Doe
required:
- id
- username
UserId:
type: string
format: uuid
paths:
/patients:
get:
tags: [ Patients ]
summary: Returns a list of patients, ordered by surname, then first name
operationId: getPatients
responses:
"200":
description: List successfully retrieved
content:
application/json:
schema:
properties:
patients:
type: array
items:
$ref: "#/components/schemas/Patient"
"403":
description: Access denied
post:
summary: Creates a new patient
operationId: addPatient
tags: [ Patients ]
requestBody:
content:
application/json:
schema:
type: object
properties:
firstName:
type: string
minLength: 1
surname:
type: string
minLength: 1
required:
- firstName
- surname
responses:
"201":
description: The patient was created successfully
content:
application/json:
schema:
$ref: "#/components/schemas/Patient"
"403":
description: Access denied
"405":
description: The patient information was formatted incorrectly.
/patients/{patientId}:
get:
operationId: getPatient
tags: [ Patients ]
summary: Retrieves a patient's details
parameters:
- in: path
name: patientId
required: true
schema:
$ref: "#/components/schemas/PatientId"
responses:
"200":
description: Patient successfully retrieved
content:
application/json:
schema:
properties:
patient:
$ref: "#/components/schemas/Patient"
"403":
description: Access denied
"404":
description: Patient not found
/patients/{patientId}/objectives:
get:
operationId: getObjectives
tags: [ Patients ]
summary: Retrieves a list of all the patient's current objectives
parameters:
- in: path
name: patientId
required: true
schema:
$ref: "#/components/schemas/PatientId"
responses:
"200":
description: Patient successfully retrieved
content:
application/json:
schema:
properties:
objectives:
type: array
items:
$ref: "#/components/schemas/Objective"
"403":
description: Access denied
"404":
description: Patient not found
post:
operationId: createObjective
tags: [ Patients ]
summary: Creates a new objective for the patient
parameters:
- in: path
name: patientId
required: true
schema:
$ref: "#/components/schemas/PatientId"
requestBody:
content:
application/json:
schema:
properties:
description:
description: The description of the objective
type: string
type:
type: string
enum:
- Counter
- Duration
- Latency
required:
- description
- type
responses:
"200":
description: Objective successfully created
content:
application/json:
schema:
properties:
objective:
$ref: "#/components/schemas/Objective"
"403":
description: Access denied
"404":
description: Patient not found
/patients/{patientId}/objectives/{objectiveId}:
get:
operationId: getObjective
tags: [ Patients ]
summary: Retrieves a patient's particular objective
parameters:
- in: path
name: patientId
required: true
schema:
$ref: "#/components/schemas/PatientId"
- in: path
name: objectiveId
required: true
schema:
$ref: "#/components/schemas/ObjectiveId"
- in: query
name: include-data
required: false
schema:
type: boolean
responses:
"200":
description: Objective successfully retrieved.
content:
application/json:
schema:
properties:
objective:
$ref: "#/components/schemas/Objective"
data:
description: If 'include-data' has been set to 'true', will be included
nullable: true
type: array
items:
$ref: "#/components/schemas/Metric"
"403":
description: Access denied
"404":
description: Patient or objective not found
/patients/{patientId}/objectives/{objectiveId}/record:
post:
operationId: recordObjectiveMetric
tags: [ Patients ]
summary: Records a new count for the patient's objective
parameters:
- in: path
name: patientId
required: true
schema:
$ref: "#/components/schemas/PatientId"
- in: path
name: objectiveId
required: true
schema:
$ref: "#/components/schemas/ObjectiveId"
requestBody:
content:
application/json:
schema:
properties:
startTime:
type: string
format: date-time
example: "2017-07-21T17:32:28Z"
endTime:
type: string
format: date-time
example: "2017-07-21T17:32:28Z"
required:
- startTime
responses:
"204":
description: Recorded Successfully
"403":
description: Access denied
"404":
description: Patient or objective not found