-
Notifications
You must be signed in to change notification settings - Fork 20
/
openapi.yaml
569 lines (537 loc) · 14.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
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
openapi: 3.0.0
info:
title: SafePlaces Backend API
contact: {}
version: '1.0'
paths:
/login:
post:
summary: Returns a JWT to be used in subsequent API requests
operationId: Login
parameters: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/LoginRequest'
example:
username: spladmin
password: password
required: true
responses:
'200':
description: ''
headers: {}
content:
application/json:
schema:
$ref: '#/components/schemas/LoginResponse'
deprecated: false
security: []
/access-code:
post:
summary: Returns an access code to be used when uploading points of concern data to ingest service
operationId: AccessCode
parameters: []
responses:
'200':
description: ''
headers: {}
content:
application/json:
schema:
$ref: '#/components/schemas/AccessCodeResponse'
deprecated: false
/organization:
get:
summary: Returns information about the logged in user's organization
operationId: Organization
parameters: []
responses:
'200':
description: ''
headers: {}
content:
application/json:
schema:
$ref: '#/components/schemas/OrganizationResponse'
deprecated: true
/organization/configuration:
put:
summary: Returns information about the logged in user's organization
operationId: OrganizationConfiguration
parameters: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/OrganizationConfigurationRequest'
required: true
responses:
'200':
description: ''
headers: {}
content:
application/json:
schema:
$ref: '#/components/schemas/OrganizationConfigurationResponse'
deprecated: false
get:
summary: Organization Configuration
operationId: GetOrganizationConfiguration
parameters: []
responses:
'200':
description: ''
headers: {}
content:
application/json:
schema:
$ref: '#/components/schemas/OrganizationConfigurationResponse'
deprecated: false
/organization/cases:
get:
summary: Returns all cases associated with the organization of the logged in user
operationId: OrganizationCases
parameters: []
responses:
'200':
description: ''
headers: {}
content:
application/json:
schema:
$ref: '#/components/schemas/OrganizationCasesResponse'
deprecated: false
/organization/case:
post:
summary: Create a new case
operationId: CreateCase
parameters: []
responses:
'200':
description: ''
headers: {}
content:
application/json:
schema:
$ref: '#/components/schemas/CreateCaseResponse'
deprecated: false
/case:
put:
summary: Update an existing case
operationId: UpdateCase
parameters: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateCaseRequest'
example:
caseId: 1
externalId: an_id
required: true
responses:
'200':
description: ''
headers: {}
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateCaseResponse'
deprecated: false
/case/delete:
post:
summary: Delete a case
operationId: DeleteCase
parameters: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/DeleteCaseRequest'
example:
caseId: 2
required: true
responses:
'200':
description: 'Case was successfully deleted'
headers: {}
deprecated: false
/case/consent-to-publishing:
post:
summary: Record user's consent to the publishing of their data
operationId: ConsentToPublishing
parameters: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/ConsentToPublishingRequest'
example:
caseId: 1
required: true
responses:
'200':
description: ''
headers: {}
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateCaseResponse'
deprecated: false
/case/stage:
post:
summary: Mark a case as ready for review before publishing
operationId: StageCase
parameters: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/StageCaseRequest'
example:
caseId: 1
required: true
responses:
'200':
description: ''
headers: {}
content:
application/json:
schema:
$ref: '#/components/schemas/StageCaseResponse'
deprecated: false
/cases/publish:
post:
summary: Select a set a cases whose points of concern will be added to the publicly accessible published data set
operationId: PublishCase
parameters: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/PublishCaseRequest'
example:
caseIds:
- 1
- 2
required: true
responses:
'200':
description: 'Cases were successfully published'
headers: {}
deprecated: false
components:
schemas:
LoginRequest:
title: LoginRequest
required:
- username
- password
type: object
properties:
username:
type: string
password:
type: string
example:
username: spladmin
password: password
LoginResponse:
type: object
properties:
token:
type: string
example:
token: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJzcGxhZG1pbiIsImlhdCI6MTU5Mjk5NzgzNywiZXhwIjoxNTkzMDMzODM3fQ.uJ2M8qzRT8OaLQVqV8vg5kAy8ylRD10QgeK2z-uRZME"
OrganizationResponse:
title: OrganizationResponse
type: object
properties:
id:
type: integer
externalId:
type: string
name:
type: string
completedOnboarding:
type: boolean
example:
id: 1
name: Health Authority
externalId: 1eb7c9ac-e417-4845-a7e3-a74db447ecc7
completedOnboarding: true
OrganizationConfigurationRequest:
title: OrganizationConfigurationRequest
required:
- name
- notificationThresholdPercent
- notificationThresholdTimeline
- daysToRetainRecords
- regionCoordinates
- apiEndpointUrl
- referenceWebsiteUrl
- infoWebsiteUrl
- completedOnboarding
- privacyPolicyUrl
type: object
properties:
name:
type: string
notificationThresholdPercent:
type: integer
format: int32
notificationThresholdTimeline:
type: integer
format: int32
daysToRetainRecords:
type: integer
format: int32
regionCoordinates:
$ref: '#/components/schemas/RegionCoordinates'
apiEndpointUrl:
type: string
referenceWebsiteUrl:
type: string
infoWebsiteUrl:
type: string
completedOnboarding:
type: boolean
privacyPolicyUrl:
type: string
example:
name: Health Authority
notificationThresholdPercent: 6
notificationThresholdTimeline: 0
daysToRetainRecords: 30
regionCoordinates:
ne:
latitude: 21.312764055951195
longitude: -21.45445121262883
sw:
latitude: 21.766025040122642
longitude: -21.49442923997258
apiEndpointUrl: 'https://s3.aws.com/bucket_name'
referenceWebsiteUrl: 'http://nbc.gov'
infoWebsiteUrl: 'http://nbc.gov'
completedOnboarding: true
privacyPolicyUrl: http://test.com
OrganizationConfigurationResponse:
title: OrganizationConfigurationResponse
type: object
properties:
name:
type: string
notificationThresholdPercent:
type: integer
format: int32
notificationThresholdTimeline:
type: integer
format: int32
daysToRetainRecords:
type: integer
format: int32
regionCoordinates:
$ref: '#/components/schemas/RegionCoordinates'
apiEndpointUrl:
type: string
referenceWebsiteUrl:
type: string
infoWebsiteUrl:
type: string
completedOnboarding:
type: boolean
privacyPolicyUrl:
type: string
example:
name: Health Authority
notificationThresholdPercent: 6
notificationThresholdTimeline: 0
daysToRetainRecords: 30
regionCoordinates:
ne:
latitude: 21.312764055951195
longitude: -21.45445121262883
sw:
latitude: 21.766025040122642
longitude: -21.49442923997258
apiEndpointUrl: 'https://s3.aws.com/bucket_name'
referenceWebsiteUrl: 'http://nbc.gov'
infoWebsiteUrl: 'http://nbc.gov'
completedOnboarding: true
privacyPolicyUrl: 'http://test.com'
externalId: 'a30ed5ec-b639-11ea-b3de-0242ac130004'
OrganizationCasesResponse:
title: OrganizationCasesResponse
type: array
items:
type: object
example:
cases:
- caseId: 1
state: staging
updatedAt: "2020-06-24T11:26:10.416Z"
stagedAt: "2020-07-24T04:00:00.000Z"
externalId: "2fee5ac6-e11d-47e4-a89d-8a5a80201710"
contactTracerId: "a88309ca-26cd-4d2b-8923-af0779e423a3"
- caseId: 2
state: unpublished
updatedAt: "2020-06-24T11:26:10.416Z"
stagedAt: null
externalId: "5add5ac6-e11d-47e4-a89d-8a5a8020123"
contactTracerId: "a88309ca-26cd-4d2b-8923-af0779e423a3"
RegionCoordinates:
title: RegionCoordinates
required:
- ne
- sw
type: object
properties:
ne:
$ref: '#/components/schemas/Ne'
sw:
$ref: '#/components/schemas/Sw'
example:
ne:
latitude: 21.312764055951195
longitude: -21.45445121262883
sw:
latitude: 21.766025040122642
longitude: -21.49442923997258
Ne:
title: Ne
required:
- latitude
- longitude
type: object
properties:
latitude:
type: number
longitude:
type: number
example:
latitude: 21.312764055951195
longitude: -21.45445121262883
Sw:
title: Sw
required:
- latitude
- longitude
type: object
properties:
latitude:
type: number
longitude:
type: number
example:
latitude: 21.766025040122642
longitude: -21.49442923997258
DeleteCaseRequest:
title: DeleteCaseRequest
required:
- caseId
type: object
properties:
caseId:
type: integer
format: int32
example:
caseId: 2
AccessCodeResponse:
title: AccessCodeResponse
type: object
properties:
accessCode:
type: string
example:
accessCode: "123456"
CreateCaseResponse:
title: CreateCaseResponse
type: object
example:
caseId: 1
state: unpublished
updatedAt: "2020-06-24T11:26:10.416Z"
stagedAt: null
externalId: "2fee5ac6-e11d-47e4-a89d-8a5a80201710"
contactTracerId: "a88309ca-26cd-4d2b-8923-af0779e423a3"
UpdateCaseRequest:
title: UpdateCaseRequest
required:
- caseId
- externalId
type: object
properties:
caseId:
type: integer
format: int32
externalId:
type: string
example:
caseId: 1
externalId: an_id
UpdateCaseResponse:
title: UpdateCaseResponse
type: object
example:
caseId: 1
state: unpublished
updatedAt: "2020-06-24T11:26:10.416Z"
stagedAt: null
externalId: an_id
contactTracerId: "a88309ca-26cd-4d2b-8923-af0779e423a3"
ConsentToPublishingRequest:
title: ConsentToPublishingRequest
required:
- caseId
type: object
properties:
caseId:
type: integer
format: int32
example:
caseId: 1
StageCaseRequest:
title: StageCaseRequest
required:
- caseId
type: object
properties:
caseId:
type: integer
format: int32
example:
caseId: 1
StageCaseResponse:
title: UpdateCaseResponse
type: object
example:
caseId: 1
state: staging
updatedAt: "2020-06-24T11:26:10.416Z"
stagedAt: "2020-06-24T11:26:10.416Z"
externalId: "2fee5ac6-e11d-47e4-a89d-8a5a80201710"
contactTracerId: "a88309ca-26cd-4d2b-8923-af0779e423a3"
PublishCaseRequest:
title: PublishCaseRequest
required:
- caseIds
type: object
properties:
caseIds:
type: array
items:
type: integer
format: int32
example:
caseIds:
- 1
- 2
securitySchemes:
httpBearer:
type: http
scheme: bearer
bearerFormat: JWT
security:
- httpBearer: []