-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswagger.yaml
1094 lines (1051 loc) · 27.8 KB
/
swagger.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
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: '3.0.2'
info:
title: servant-api
description: servant sits on top of major crowdsourcing platforms to intelligently assists customers in performing classification tasks.
version: "1"
servers:
- url: https://crowdai-servant-api.herokuapp.com
security:
- bearerAuth: []
paths:
/projects:
get:
tags:
- "Projects"
description: Returns the list of the projects.
summary: Get projects
responses:
200:
description: The list of the projects.
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Project'
400:
description: Bad Request
post:
tags:
- "Projects"
description: Create a new project.
summary: Create project
parameters:
- in: body
name: project
description: The project to create.
required: true
schema:
$ref: '#/components/schemas/Project_create'
responses:
201:
description: The created project.
content:
application/json:
schema:
$ref: '#/components/schemas/Project'
400:
description: Bad Request
/projects/{projectID}:
parameters:
- in: path
name: projectID
required: true
schema:
type: integer
get:
tags:
- "Projects"
description: Returns a single project by ID
summary: Get project by ID
responses:
200:
description: The requested project.
content:
application/json:
schema:
$ref: '#/components/schemas/Project'
404:
description: Not Found
put:
tags:
- "Projects"
description: Update the information related to a single project selected by ID.
summary: Update project
parameters:
- in: body
name: project
description: The project info
required: true
schema:
$ref: '#/components/schemas/Project'
responses:
200:
description: OK, updated.
content:
application/json:
schema:
$ref: '#/components/schemas/Project'
delete:
tags:
- "Projects"
summary: Delete a project by ID.
responses:
204:
description: OK, deleted.
content:
application/json:
schema:
$ref: '#/components/schemas/Project'
404:
description: Not Found
/items:
get:
parameters:
- in: query
name: projectId
schema:
type: integer
description: ID of the project related to the cache.
tags:
- "Items"
description: Returns the list of the items.
summary: Get items
responses:
200:
description: The list of the items.
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Item'
400:
description: Bad Request
post:
tags:
- "Items"
description: Create new items.
summary: Create items
parameters:
- in: body
name: items
description: The items to create.
required: true
schema:
oneOf:
- $ref: '#/components/schemas/Item_create'
- $ref: '#/components/schemas/Item_create_csv'
responses:
201:
description: The list of created items.
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Item'
400:
description: Bad Request
/items/{itemID}:
parameters:
- in: path
name: itemID
required: true
schema:
type: integer
get:
tags:
- "Items"
description: Returns a single item by ID
summary: Get item by ID
responses:
200:
description: The requested item.
content:
application/json:
schema:
$ref: '#/components/schemas/Item'
404:
description: Not Found
put:
tags:
- "Items"
description: Update the information related to a single item selected by ID.
summary: Update item
parameters:
- in: body
name: item
description: The item info
required: true
schema:
$ref: '#/components/schemas/Item'
responses:
200:
description: OK, updated.
content:
application/json:
schema:
$ref: '#/components/schemas/Item'
delete:
tags:
- "Items"
summary: Delete an item by ID.
responses:
204:
description: OK, deleted.
content:
application/json:
schema:
$ref: '#/components/schemas/Item'
404:
description: Not Found
/template-do:
get:
tags:
- "Template-do"
description: Returns the list of the template-do.
summary: Get template-do
responses:
200:
description: The list of the template-do.
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/TemplateDo'
400:
description: Bad Request
post:
tags:
- "Template-do"
description: Create a new template-do.
summary: Create template-do
parameters:
- in: body
name: template-do
description: The template-do to create.
required: true
schema:
$ref: '#/components/schemas/TemplateDo_create'
responses:
201:
description: The created template-do.
content:
application/json:
schema:
$ref: '#/components/schemas/TemplateDo'
400:
description: Bad Request
/template-do/{templateDoID}:
parameters:
- in: path
name: templateDoID
required: true
schema:
type: integer
get:
tags:
- "Template-do"
description: Returns a single template-do by ID
summary: Get template-do by ID
responses:
200:
description: The requested template-do.
content:
application/json:
schema:
$ref: '#/components/schemas/TemplateDo'
404:
description: Not Found
put:
tags:
- "Template-do"
description: Update the information related to a single template-do selected by ID.
summary: Update template-do
parameters:
- in: body
name: template-do
description: The template-do info
required: true
schema:
$ref: '#/components/schemas/TemplateDo'
responses:
200:
description: OK, updated.
content:
application/json:
schema:
$ref: '#/components/schemas/TemplateDo'
delete:
tags:
- "Template-do"
summary: Delete an template-do by ID.
responses:
204:
description: OK, deleted.
content:
application/json:
schema:
$ref: '#/components/schemas/TemplateDo'
404:
description: Not Found
/workflows:
get:
parameters:
- in: query
name: projectId
schema:
type: integer
description: ID of the project related to the workflow.
tags:
- "Workflows"
description: Returns the list of the workflows.
summary: Get workflows
responses:
200:
description: The list of the workflows.
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Workflow'
400:
description: Bad Request
post:
tags:
- "Workflows"
description: Create a new workflow.
summary: Create workflow
parameters:
- in: body
name: workflow
description: The workflow to create.
required: true
schema:
$ref: '#/components/schemas/Workflow_create'
responses:
201:
description: The created workflow.
content:
application/json:
schema:
$ref: '#/components/schemas/Workflow'
400:
description: Bad Request
/workflows/{workflowID}:
parameters:
- in: path
name: workflowID
required: true
schema:
type: integer
get:
tags:
- "Workflows"
description: Returns a single workflow by ID
summary: Get workflow by ID
responses:
200:
description: The requested workflow.
content:
application/json:
schema:
$ref: '#/components/schemas/Workflow'
404:
description: Not Found
put:
tags:
- "Workflows"
description: Update the information related to a single workflow selected by ID.
summary: Update workflow
parameters:
- in: body
name: workflow
description: The workflow info
required: true
schema:
$ref: '#/components/schemas/Workflow'
responses:
200:
description: OK, updated.
content:
application/json:
schema:
$ref: '#/components/schemas/Workflow'
delete:
tags:
- "Workflows"
summary: Delete a workflow by ID.
responses:
204:
description: OK, deleted.
content:
application/json:
schema:
$ref: '#/components/schemas/Workflow'
404:
description: Not Found
/workflows/{workflowID}/start:
parameters:
- in: path
name: workflowID
required: true
schema:
type: integer
post:
tags:
- "Workflows"
description: Start a workflow by ID
summary: Start workflow by ID
responses:
202:
description: The workflow is started.
content:
application/json:
schema:
type: integer
404:
description: Not Found
/workflows/{workflowID}/{blockID}/estimated-cost:
parameters:
- in: path
name: workflowID
required: true
schema:
type: integer
- in: path
name: blockID
required: true
schema:
type: integer
get:
tags:
- "Workflows"
description: Get an estimated cost of the do-block of the workflow specified by ID
summary: Get an estimated cost
responses:
200:
description: The estimated cost.
content:
application/json:
schema:
type: integer
404:
description: Not Found
/runs:
get:
parameters:
- in: query
name: workflowId
schema:
type: integer
description: ID of the workflow related to the run.
tags:
- "Runs"
description: Returns the list of the runs.
summary: Get runs
responses:
200:
description: The list of the runs.
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Run'
400:
description: Bad Request
/runs/{runID}:
parameters:
- in: path
name: runID
required: true
schema:
type: integer
get:
tags:
- "Runs"
description: Returns a single run by ID
summary: Get run by ID
responses:
200:
description: The requested run.
content:
application/json:
schema:
$ref: '#/components/schemas/Run'
404:
description: Not Found
/runs/{runID}/result:
parameters:
- in: path
name: runID
required: true
schema:
type: integer
get:
tags:
- "Runs"
description: Returns the result of a run by ID
summary: Get the result of the run by ID
responses:
200:
description: The requested result.
content:
application/json:
schema:
$ref: '#/components/schemas/RunResult'
400:
description: Run not finished yet
404:
description: Not Found
/cache:
get:
parameters:
- in: query
name: runId
schema:
type: integer
description: ID of the run related to the cache.
tags:
- "Cache"
description: Returns the list of the cache.
summary: Get cache
responses:
200:
description: The list of the cache.
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Cache'
400:
description: Bad Request
/cache/{cacheID}:
parameters:
- in: path
name: cacheID
required: true
schema:
type: integer
get:
tags:
- "Cache"
description: Returns a single cache by ID
summary: Get cache by ID
responses:
200:
description: The requested cache.
content:
application/json:
schema:
$ref: '#/components/schemas/Cache'
404:
description: Not Found
delete:
tags:
- "Cache"
summary: Delete a cache by ID.
responses:
204:
description: OK, deleted.
content:
application/json:
schema:
$ref: '#/components/schemas/Cache'
404:
description: Not Found
/block-types:
get:
tags:
- "Block-types"
security: []
description: Returns the list of the block-types.
summary: Get block-types
responses:
200:
description: The list of the block-types.
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/BlockType'
400:
description: Bad Request
/block-types/{blockTypeID}:
parameters:
- in: path
name: blockTypeID
required: true
schema:
type: integer
get:
tags:
- "Block-types"
security: []
description: Returns a single block-type by ID
summary: Get block-type by ID
responses:
200:
description: The requested block-type.
content:
application/json:
schema:
$ref: '#/components/schemas/BlockType'
404:
description: Not Found
/account-balance:
get:
tags:
- "Account-balance"
description: Returns the balance of the user on each platform
summary: Get user balance
responses:
200:
description: The user balance
content:
application/json:
schema:
$ref: '#/components/schemas/AccountBalance'
/project-collaborations:
get:
parameters:
- in: query
name: projectId
schema:
type: integer
description: ID of the project related to the collaboration.
tags:
- "Project-collaborations"
description: Return the collaboration between users on projects
summary: Get collaborations
responses:
200:
description: The collaborations
content:
application/json:
schema:
$ref: '#/components/schemas/Collaboration'
post:
tags:
- "Project-collaborations"
description: Add a collaborator to a project.
summary: Share a project
parameters:
- in: body
name: collaboration
description: The collaboration to create.
required: true
schema:
$ref: '#/components/schemas/Collaboration_create'
responses:
201:
description: The created collaboration.
content:
application/json:
schema:
$ref: '#/components/schemas/Collaboration'
400:
description: Bad Request
/project-collaborations/{collaborationID}:
parameters:
- in: path
name: collaborationID
required: true
schema:
type: integer
get:
tags:
- "Project-collaborations"
description: Returns a single collaboration by ID
summary: Get collaboration by ID
responses:
200:
description: The requested collaboration.
content:
application/json:
schema:
$ref: '#/components/schemas/Collaboration'
404:
description: Not Found
delete:
tags:
- "Project-collaborations"
summary: Delete a collaboration by ID.
responses:
204:
description: OK, deleted.
content:
application/json:
schema:
$ref: '#/components/schemas/Collaboration'
404:
description: Not Found
/users:
get:
parameters:
- in: query
name: email
schema:
type: string
description: search a user by email (at least 4 chars)
tags:
- "Users"
description: Return the users
summary: Get users
responses:
200:
description: The users
content:
application/json:
schema:
$ref: '#/components/schemas/User'
/users/{userID}:
parameters:
- in: path
name: userID
required: true
schema:
type: integer
get:
tags:
- "Users"
description: Returns a single user by ID
summary: Get user by ID
responses:
200:
description: The requested user.
content:
application/json:
schema:
$ref: '#/components/schemas/User'
404:
description: Not Found
/public-workflows:
get:
tags:
- "Public-workflows"
security: []
description: Return only the public workflows
summary: Get public workflows
responses:
200:
description: The workflows
content:
application/json:
schema:
$ref: '#/components/schemas/Workflow'
/public-workflows/{workID}:
parameters:
- in: path
name: workID
required: true
schema:
type: integer
get:
tags:
- "Public-workflows"
security: []
description: Returns a public workflow by ID
summary: Get public workflow by ID
responses:
200:
description: The requested workflow.
content:
application/json:
schema:
$ref: '#/components/schemas/Workflow'
404:
description: Not Found
components:
securitySchemes:
bearerAuth:
type: http
scheme: bearer
schemas:
Project:
type: object
properties:
id:
type: integer
description: The ID of the project
created_at:
type: string
description: The creation timestamp of the project
updated_at:
type: string
description: The update timestamp of the project
deleted_at:
type: string
description: The delete timestamp of the project
data:
type: object
description: The data related to the project
properties:
name:
type: string
description: The name of the project
description:
type: string
description: The description of the project
Project_create:
type: object
properties:
name:
type: string
description: The name of the project
description:
type: string
description: The description of the project
required:
- name
- description
Item:
type: object
properties:
id:
type: integer
description: The ID of the item
created_at:
type: string
description: The creation timestamp of the item
updated_at:
type: string
description: The update timestamp of the item
deleted_at:
type: string
description: The delete timestamp of the item
id_project:
type: integer
description: The ID of the project which the item belongs to
data:
type: object
description: The data related to the item
Item_create:
type: object
properties:
id_project:
type: integer
description: The ID of the project which the items belongs to
items:
type: array
description: The array of items
items:
type: object
description: The item
required:
- id_project
- items
Item_create_csv:
type: object
properties:
id_project:
type: integer
description: The ID of the project which the items belongs to
csv_url:
type: string
description: The URL of the csv file
required:
- id_project
- csv_url
TemplateDo:
type: object
properties:
id:
type: integer
description: The ID of the template-do
created_at:
type: string
description: The creation timestamp of the template-do
updated_at:
type: string
description: The update timestamp of the template-do
deleted_at:
type: string
description: The delete timestamp of the template-do
data:
type: object
description: The data related to the template-do
TemplateDo_create:
type: object
properties:
name:
type: string
description: The name of the template-do
instructions:
type: string
description: The instructions of the template-do
blocks:
type: array
description: The blocks of the template-do
Workflow:
type: object
properties:
id:
type: integer
description: The ID of the workflow
created_at:
type: string
description: The creation timestamp of the workflow
updated_at:
type: string
description: The update timestamp of the workflow
deleted_at:
type: string
description: The delete timestamp of the workflow
id_project:
type: integer
description: The ID of the project which the workflow belongs to
data:
type: object
description: The data related to the workflow
Workflow_create:
type: object
properties:
id_project:
type: integer
description: The ID of the project which the workflow belongs to
data:
type: object
description: The data related to the workflow
properties:
name:
type: string
description: The name of the workflow
blocks:
type: array
description: The blocks which compose the workflow
required:
- id_project
- data
Run:
type: object
properties:
id:
type: integer
description: The ID of the run
created_at:
type: string
description: The creation timestamp of the run
updated_at:
type: string
description: The update timestamp of the run
deleted_at:
type: string
description: The delete timestamp of the run
id_workflow:
type: integer
description: The ID of the workflow which the run belongs to
data:
type: object
description: The data related to the run
RunResult:
type: object
properties:
label:
type: object
description: The label of the block
Cache:
type: object
properties:
id:
type: integer
description: The ID of the cache
created_at:
type: string
description: The creation timestamp of the cache
updated_at: