forked from baidu/Curve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb_api.yaml
512 lines (511 loc) · 11 KB
/
web_api.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
swagger: '2.0'
info:
title: Web API for Curve
description: Web API for Curve, which is a label tool for Time-series data
version: 0.1.2
host: ''
schemes:
- https
- http
basePath: /v1
consumes:
- application/form-data
produces:
- application/json
paths:
'/menus':
get:
summary: get operation list
tags:
- menu
responses:
'200':
description: OK
schema:
$ref: '#/definitions/MenuResponse'
'/datas':
get:
summary: get data list
tags:
- data
description:
parameters:
- name: pattern
in: query
type: string
responses:
'200':
description: OK
schema:
$ref: '#/definitions/DataListResponse'
'/data/{dataName}':
post:
summary: upload data
tags:
- data
consumes:
- multipart/form-data
parameters:
- $ref: '#/parameters/dataName'
- $ref: '#/parameters/file'
responses:
'201':
description: OK
headers:
Location:
description: download uri
type: string
schema:
$ref: '#/definitions/DataMetaResponse'
'422':
description: Unprocessable Entity
schema:
$ref: '#/definitions/CommonResponse'
get:
summary: download data
tags:
- data
parameters:
- $ref: '#/parameters/dataName'
produces:
- multipart/form-data
responses:
'200':
description: OK
schema:
type: file
'404':
description: Not Found
schema:
$ref: '#/definitions/CommonResponse'
put:
summary: data operation
tags:
- menu
description: ''
parameters:
- $ref: '#/parameters/dataName'
- $ref: '#/parameters/startTime'
- $ref: '#/parameters/endTime'
- $ref: '#/parameters/action'
responses:
'200':
description: OK
schema:
$ref: '#/definitions/CommonResponse'
'404':
description: Not Found
schema:
$ref: '#/definitions/CommonResponse'
'422':
description: Unprocessable Entity
schema:
$ref: '#/definitions/CommonResponse'
delete:
summary: delete data
tags:
- data
description: ''
parameters:
- $ref: '#/parameters/dataName'
responses:
'200':
description: OK
schema:
$ref: '#/definitions/CommonResponse'
'404':
description: Not Found
schema:
$ref: '#/definitions/CommonResponse'
'405':
description: Not Acceptable
schema:
$ref: '#/definitions/CommonResponse'
'/data/{dataName}/curves':
get:
summary: get raw, ref, label data and bands in given period
tags:
- trend
- label
description: ''
parameters:
- $ref: '#/parameters/dataName'
- $ref: '#/parameters/startTime'
- $ref: '#/parameters/endTime'
- name: bandName
in: query
type: string
responses:
'200':
description: OK
schema:
$ref: '#/definitions/TrendResponse'
'404':
description: Not Found
schema:
$ref: '#/definitions/CommonResponse'
'/data/{dataName}/thumb':
get:
summary: get sample data for thumb
tags:
- trend
parameters:
- $ref: '#/parameters/dataName'
responses:
'200':
description: OK
schema:
$ref: '#/definitions/ThumbResponse'
'404':
description: Not Found
schema:
$ref: '#/definitions/CommonResponse'
'/data/{dataName}/label':
put:
summary: mark normal or abnormal
tags:
- label
parameters:
- $ref: '#/parameters/dataName'
- $ref: '#/parameters/startTime'
- $ref: '#/parameters/endTime'
- $ref: '#/parameters/label'
responses:
'200':
description: OK
schema:
$ref: '#/definitions/CommonResponse'
'404':
description: Not Found
schema:
$ref: '#/definitions/CommonResponse'
'422':
description: Unprocessable Entity
schema:
$ref: '#/definitions/CommonResponse'
'/data/{dataName}/band/{bandName}':
get:
summary: get band
tags:
- band
description: ''
parameters:
- $ref: '#/parameters/dataName'
- $ref: '#/parameters/bandName'
- name: startTime
description: ms
in: query
type: integer
format: int64
default: 0
- name: endTime
description: ms
in: query
type: integer
format: int64
default: 0
- $ref: '#/parameters/bandOrder'
responses:
'200':
description: OK
schema:
$ref: '#/definitions/BandResponse'
'404':
description: Not Found
schema:
$ref: '#/definitions/CommonResponse'
delete:
summary: delete band
tags:
- band
description: ''
parameters:
- $ref: '#/parameters/dataName'
- $ref: '#/parameters/bandName'
responses:
'200':
description: OK
schema:
$ref: '#/definitions/CommonResponse'
'404':
description: Not Found
schema:
$ref: '#/definitions/CommonResponse'
parameters:
dataName:
name: dataName
in: path
required: true
type: string
file:
description: csv file with <timestamp, value, label>
name: file
in: formData
type: file
bandName:
name: bandName
in: path
required: true
type: string
startTime:
description: ms
name: startTime
in: query
required: true
type: integer
format: int64
endTime:
description: ms
name: endTime
in: query
required: true
type: integer
format: int64
action:
description: operation name
name: action
in: query
required: true
type: string
label:
name: label
in: query
required: true
type: integer
format: int64
enum:
- 0
- 1
- -1
bandOrder:
name: order
in: query
type: string
enum:
- time
- reliability
default: time
definitions:
Action:
properties:
name:
type: string
enum:
- 'Mark Normal'
action:
type: string
enum:
- 'cancel_label'
Time:
description: ms
type: integer
format: int64
TimeSlot:
required:
- start
- end
properties:
start:
$ref: '#/definitions/Time'
end:
$ref: '#/definitions/Time'
Meta:
required:
- id
- name
- uri
- time
- period
- labelRatio
properties:
id:
type: integer
format: int64
name:
type: string
uri:
description: download uri
type: string
time:
$ref: '#/definitions/TimeSlot'
display:
$ref: '#/definitions/TimeSlot'
period:
required:
- length
- ratio
properties:
length:
type: integer
format: int64
ratio:
type: number
format: float
labelRatio:
type: number
format: float
createTime:
$ref: '#/definitions/Time'
updateTime:
$ref: '#/definitions/Time'
Trend:
required:
- name
- type
- data
properties:
name:
type: string
type:
type: string
data:
type: array
xml:
name: point
wrapped: true
items:
type: array
xml:
name: value
wrapped: true
minItems: 2
maxItems: 3
items:
type: number
BandTime:
required:
- duration
- show
properties:
duration:
$ref: '#/definitions/TimeSlot'
show:
$ref: '#/definitions/TimeSlot'
BandItems:
type: array
xml:
name: band
wrapped: true
items:
required:
- bandNo
- bandCount
- currentTime
- reliability
properties:
bandNo:
type: integer
format: int64
bandCount:
type: integer
format: int64
currentTime:
$ref: '#/definitions/BandTime'
preTime:
$ref: '#/definitions/TimeSlot'
nextTime:
$ref: '#/definitions/TimeSlot'
reliability:
type: number
format: float
BandCategory:
required:
- name
- bands
properties:
name:
type: string
bands:
$ref: '#/definitions/BandItems'
CommonResponse:
required:
- msg
- server
- traceId
properties:
msg:
type: string
server:
type: string
traceId:
type: string
MenuResponse:
required:
- data
allOf:
- $ref: '#/definitions/CommonResponse'
- properties:
data:
type: array
xml:
name: menu
wrapped: true
items:
$ref: '#/definitions/Action'
DataMetaResponse:
required:
- data
allOf:
- $ref: '#/definitions/CommonResponse'
- properties:
data:
$ref: '#/definitions/Meta'
DataListResponse:
required:
- data
allOf:
- $ref: '#/definitions/CommonResponse'
- properties:
data:
type: array
xml:
name: meta
wrapped: true
items:
$ref: '#/definitions/Meta'
TrendResponse:
required:
- data
allOf:
- $ref: '#/definitions/CommonResponse'
- properties:
data:
required:
- trends
- bands
- yAxis
properties:
trends:
type: array
items:
$ref: '#/definitions/Trend'
bands:
type: array
items:
$ref: '#/definitions/BandCategory'
yAxis:
type: array
xml:
name: value
wrapped: true
minItems: 2
maxItems: 2
items:
type: number
format: float
ThumbResponse:
required:
- data
allOf:
- $ref: '#/definitions/CommonResponse'
- properties:
data:
$ref: '#/definitions/Trend'
BandResponse:
required:
- data
allOf:
- $ref: '#/definitions/CommonResponse'
- properties:
data:
$ref: '#/definitions/BandItems'