-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathopenapi.yaml
372 lines (353 loc) · 8.52 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
openapi: 3.0.0
info:
title: SafePlaces Translation API
contact: {}
version: '1.0'
paths:
/case/points/ingest:
post:
summary: Associate concern points that were uploaded by SafePaths mobile application user to a cases
operationId: AssociatePointstoCase
parameters: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/AssociatePointstoCaseRequest'
example:
caseId: 1
accessCode: '272236'
required: true
responses:
'200':
description: ''
headers: {}
content:
application/json:
schema:
$ref: '#/components/schemas/AssociatePointstoCaseResponse'
deprecated: false
/case/points:
post:
summary: Get all points of concern associated with a case
operationId: CasePoints
parameters: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CasePointsRequest'
example:
caseId: 1
required: true
responses:
'200':
description: ''
headers: {}
content:
application/json:
schema:
$ref: '#/components/schemas/CasePointsResponse'
deprecated: false
/case/points/delete:
post:
summary: Deletes a collection of points
operationId: DeleteCasePoints
parameters: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/DeleteCasePointsRequest'
required: true
responses:
'200':
description: 'Points were successfully deleted'
headers: {}
deprecated: false
/case/point:
post:
summary: Create a point of concern
operationId: CreateCasePoint
parameters: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CreateCasePointRequest'
example:
caseId: '1'
point:
longitude: '23.183994'
latitude: '-72.318221'
time: '2020-06-02T18:25:43.511Z'
duration: 10
required: true
responses:
'200':
description: ''
headers: {}
content:
application/json:
schema:
$ref: '#/components/schemas/Point'
deprecated: false
put:
summary: Update an existing point
operationId: CasePoint
parameters: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CasePointRequest'
example:
pointId: 9332
longitude: '23.183994'
latitude: '-72.318221'
time: '2020-06-02T18:25:43.511Z'
duration: 20
required: true
responses:
'200':
description: ''
headers: {}
content:
application/json:
schema:
$ref: '#/components/schemas/UpdatedPoint'
deprecated: false
/cases/points:
post:
summary: Returns all points associated with the cases
operationId: CasesPoints
parameters: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CasesPointsRequest'
example:
caseIds:
- 1
- 2
required: true
responses:
'200':
description: ''
headers: {}
content:
application/json:
schema:
$ref: '#/components/schemas/CasesPointsResponse'
deprecated: false
components:
schemas:
AssociatePointstoCaseRequest:
title: AssociatePointstoCaseRequest
required:
- caseId
- accessCode
type: object
properties:
caseId:
type: integer
format: int32
accessCode:
type: string
example:
caseId: 1
accessCode: '272236'
AssociatePointstoCaseResponse:
title: AssociatePointsToCaseResponse
type: array
items:
type: object
example:
concernPoints:
- pointId: 1
longitude: '23.183994'
latitude: '-72.318221'
time: '2020-06-02T18:25:43.511Z'
duration: 10
- pointId: 2
longitude: '22.183994'
latitude: '-73.318221'
time: '2020-06-02T18:45:43.511Z'
duration: 5
CasePointsRequest:
title: CasePointsRequest
required:
- caseId
type: object
properties:
caseId:
type: integer
format: int32
example:
caseId: 1
CasePointsResponse:
title: CasePointsResponse
type: array
items:
type: object
example:
concernPoints:
- pointId: 1
caseId: 1
longitude: '23.183994'
latitude: '-72.318221'
time: '2020-06-02T18:25:43.511Z'
duration: 10
- pointId: 2
caseId: 1
longitude: '22.183994'
latitude: '-73.318221'
time: '2020-06-02T18:45:43.511Z'
duration: 5
CreateCasePointRequest:
title: CreateCasePointRequest
required:
- caseId
- point
type: object
properties:
caseId:
type: string
point:
$ref: '#/components/schemas/Point'
example:
caseId: '1'
point:
longitude: '23.183994'
latitude: '-72.318221'
time: '2020-06-02T18:25:43.511Z'
duration: 10
Point:
title: Point
required:
- longitude
- latitude
- time
- duration
type: object
properties:
pointId:
type: integer
longitude:
type: string
latitude:
type: string
time:
type: string
duration:
type: integer
format: int32
example:
pointId: 1
longitude: '23.183994'
latitude: '-72.318221'
time: '2020-06-02T18:25:43.511Z'
duration: 10
CasePointRequest:
title: CasePointRequest
required:
- pointId
- longitude
- latitude
- time
- duration
type: object
properties:
pointId:
type: integer
format: int32
longitude:
type: string
latitude:
type: string
time:
type: string
duration:
type: integer
format: int32
example:
pointId: 9332
longitude: '23.183994'
latitude: '-72.318221'
time: '2020-06-02T18:25:43.511Z'
duration: 20
UpdatedPoint:
title: UpdatedPoint
example:
pointId: 9332
longitude: '23.183994'
latitude: '-72.318221'
time: '2020-06-02T18:25:43.511Z'
duration: 20
DeleteCasePointRequest:
title: DeleteCasePointRequest
required:
- pointId
type: object
properties:
pointId:
type: integer
format: int32
example:
pointId: 9332
DeleteCasePointsRequest:
title: DeleteCasePointsRequest
required:
- pointIds
type: array
properties:
pointIds:
type: array
items:
type: integer
example:
pointIds:
- 9332
- 8333
CasesPointsRequest:
title: CasesPointsRequest
required:
- caseIds
type: object
properties:
caseIds:
type: array
items:
type: integer
format: int32
example:
caseIds:
- 1
- 2
CasesPointsResponse:
title: CasesPointsResponse
type: array
items:
type: object
example:
concernPoints:
- pointId: 1
caseId: 1
longitude: '23.183994'
latitude: '-72.318221'
time: '2020-06-02T18:25:43.511Z'
duration: 10
- pointId: 2
caseId: 2
longitude: '22.183994'
latitude: '-73.318221'
time: '2020-06-02T18:45:43.511Z'
duration: 5
securitySchemes:
httpBearer:
type: http
scheme: bearer
bearerFormat: JWT
security:
- httpBearer: []