-
Notifications
You must be signed in to change notification settings - Fork 0
/
openapi.yaml
1494 lines (1478 loc) · 41.3 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
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.3
info:
title: Nine Yards REST API
description: ''
contact:
name: Rabbitminers
email: [email protected]
license:
name: ''
version: 0.0.1
paths:
/api/v1/projects:
get:
tags:
- v1
summary: Fetches the projects and related membership of that the logged
description: |
Fetches the projects and related membership of that the logged
in user is a member of. Even if the user has no memberships
the request will still return a success response with an empty
array in the body.
This endpoint requires a bearer token in order to retreive a
given user's memberships.
operationId: get_memberships_from_user
responses:
'200':
description: Successfully retrieved project memberships
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/ProjectMember'
'401':
description: Unauthorized, provide a bearer token
'500':
description: Internal server error
security:
- Bearer: []
post:
tags:
- v1
operationId: create_project
requestBody:
description: 'Details of the project to be created '
content:
application/json:
schema:
$ref: '#/components/schemas/ProjectBuilder'
required: true
responses:
'200':
description: Successfully created a project
content:
application/json:
schema:
$ref: '#/components/schemas/Project'
'401':
description: Unauthorized, provide a bearer token
'500':
description: Internal server error
security:
- Bearer: []
/api/v1/projects/{id}:
get:
tags:
- v1
summary: Fetches a project by it's id.
description: |
Fetches a project by it's id.
If the project is public then this endpoint requires no
authentication, if it is private then a membership of the
project is required.
operationId: get_project_by_id
parameters:
- name: id
in: path
description: The id of the project
required: true
schema:
type: string
maxLength: 8
minLength: 8
responses:
'200':
description: Successfully retrieved project
content:
application/json:
schema:
$ref: '#/components/schemas/Project'
'401':
description: Unauthorized, provide a bearer token
'403':
description: Forbidden, you don't have permission to access this project
'500':
description: Internal server error
security:
- {}
- Bearer: []
put:
tags:
- v1
operationId: update_project
parameters:
- name: id
in: path
description: The id of the project
required: true
schema:
type: string
maxLength: 8
minLength: 8
requestBody:
description: The values to update
content:
application/json:
schema:
$ref: '#/components/schemas/EditProject'
required: true
responses:
'200':
description: Successfully edited the project
content:
application/json:
schema:
$ref: '#/components/schemas/Project'
'401':
description: Unauthorized, provide a bearer token
'403':
description: Forbidden, you don't have permission to edit this project
'500':
description: Internal server error
security:
- Bearer: []
delete:
tags:
- v1
operationId: remove_project
parameters:
- name: id
in: path
description: The id of the project
required: true
schema:
type: string
maxLength: 8
minLength: 8
responses:
'200':
description: Successfully removed a project
'401':
description: Unauthorized, provide a bearer token
'403':
description: Forbidden, you don't have permission to invite a member to this project
'500':
description: Internal server error
security:
- Bearer: []
/api/v1/projects/{id}/audits:
get:
tags:
- v1
operationId: get_members
parameters:
- name: id
in: path
description: The id of the project
required: true
schema:
type: string
maxLength: 8
minLength: 8
responses:
'200':
description: Successfully retrieved project audits
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Audit'
'401':
description: Unauthorized, provide a bearer token
'403':
description: Forbidden, you don't have permission to access this project's memberships
'500':
description: Internal server error
security:
- {}
- Bearer: []
/api/v1/projects/{id}/members:
post:
tags:
- v1
operationId: invite_member
parameters:
- name: id
in: path
description: The id of the project to invite a user to
required: true
schema:
type: string
maxLength: 8
minLength: 8
requestBody:
description: The users id's to invite
content:
application/json:
schema:
type: array
items:
type: string
required: true
responses:
'200':
description: Successfully invited member and sent invitation notification
'401':
description: Unauthorized, provide a bearer token
'403':
description: Forbidden, you don't have permission to invite a member to this project
'500':
description: Internal server error
security:
- Bearer: []
/api/v1/projects/{id}/task-groups:
get:
tags:
- v1
operationId: get_task_groups
parameters:
- name: id
in: path
description: The id of the project
required: true
schema:
type: string
maxLength: 8
minLength: 8
responses:
'200':
description: Successfully retrieved project's task groups
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/TaskGroup'
'401':
description: Unauthorized, provide a bearer token
'403':
description: Forbidden, you don't have permission to access this project's audits
'500':
description: Internal server error
security:
- {}
- Bearer: []
post:
tags:
- v1
operationId: create_task_group
parameters:
- name: id
in: path
description: The id of the project
required: true
schema:
type: string
maxLength: 8
minLength: 8
requestBody:
description: Details of the new task group
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/TaskGroupBuilder'
required: true
responses:
'200':
description: Successfully created a project
'401':
description: Unauthorized, provide a bearer token
'403':
description: Forbidden, you don't have permission to invite a member to this project
'500':
description: Internal server error
security:
- Bearer: []
/api/v1/sub-tasks/{id}:
get:
tags:
- v1
summary: Fetches the sub-task specified by the id path parameter
description: |
Fetches the sub-task specified by the id path parameter
If the project is public then this endpoint requires no
authentication, if it is private then a membership of the
project is required.
operationId: get_sub_task_by_id
parameters:
- name: id
in: path
description: The id of the sub task
required: true
schema:
type: string
maxLength: 12
minLength: 12
responses:
'200':
description: Successfully retrieved sub-task
content:
application/json:
schema:
$ref: '#/components/schemas/SubTask'
'401':
description: Unauthorized, provide a bearer token
'403':
description: Forbidden, you don't have permission to access this sub task
'500':
description: Internal server error
security:
- {}
- Bearer: []
put:
tags:
- v1
summary: Edits the values of a sub task such as it's body or weight
description: |
Edits the values of a sub task such as it's body or weight
If the position of the sub task is updated all other subtasks
in a position equal to or greater than the updated position
are moved forwards to make space for the new location
This endpoint always requires authentication even if the
project is public and for the given member to have permission
to edit tasks
operationId: edit_sub_task
parameters:
- name: id
in: path
description: The id of the sub-task
required: true
schema:
type: string
maxLength: 12
minLength: 12
requestBody:
description: The values to update
content:
application/json:
schema:
$ref: '#/components/schemas/EditSubTask'
required: true
responses:
'200':
description: Successfully edited the sub task
content:
application/json:
schema:
$ref: '#/components/schemas/SubTask'
'401':
description: Unauthorized, provide a bearer token
'403':
description: Forbidden, you don't have permission to edit this sub-task
'500':
description: Internal server error
security:
- Bearer: []
delete:
tags:
- v1
summary: Deletes a given sub task aswell as any references to it such
description: |
Deletes a given sub task aswell as any references to it such
as assignments and notifications
This endpoint always requires authentication even if the
project is public and for the given member to have permission
to remove tasks
operationId: remove_sub_task
parameters:
- name: id
in: path
description: The id of the sub task to remove
required: true
schema:
type: string
maxLength: 12
minLength: 12
responses:
'200':
description: Successfully removed the sub task
'401':
description: Unauthorized, provide a bearer token
'403':
description: Forbidden, you don't have permission to remove this sub task
'500':
description: Internal server error
security:
- Bearer: []
/api/v1/task-groups/{id}:
get:
tags:
- v1
operationId: get_task_group_by_id
parameters:
- name: id
in: path
description: The id of the task group
required: true
schema:
type: string
maxLength: 10
minLength: 10
responses:
'200':
description: Successfully fetched task group
content:
application/json:
schema:
$ref: '#/components/schemas/TaskGroup'
'401':
description: Unauthorized, provide a bearer token
'403':
description: Forbidden, you don't have permission to read from this project
'500':
description: Internal server error
security:
- {}
- Bearer: []
put:
tags:
- v1
operationId: edit_task_group
parameters:
- name: id
in: path
description: The id of the task group
required: true
schema:
type: string
maxLength: 10
minLength: 10
requestBody:
description: The values to update
content:
application/json:
schema:
$ref: '#/components/schemas/EditTaskGroup'
required: true
responses:
'200':
description: Successfully edited the task group
content:
application/json:
schema:
$ref: '#/components/schemas/TaskGroup'
'401':
description: Unauthorized, provide a bearer token
'403':
description: Forbidden, you don't have permission to edit this task group
'500':
description: Internal server error
security:
- Bearer: []
delete:
tags:
- v1
operationId: remove_task_group
parameters:
- name: id
in: path
description: The id of the task group to remove
required: true
schema:
type: string
maxLength: 10
minLength: 10
responses:
'200':
description: Successfully removed the task group
content:
application/json:
schema:
$ref: '#/components/schemas/TaskGroup'
'401':
description: Unauthorized, provide a bearer token
'403':
description: Forbidden, you don't have permission to remove this task group
'500':
description: Internal server error
security:
- Bearer: []
/api/v1/task-groups/{id}/tasks:
get:
tags:
- v1
operationId: get_tasks
parameters:
- name: id
in: path
description: The id of the task group to fetch the tasks from
required: true
schema:
type: string
maxLength: 10
minLength: 10
responses:
'200':
description: Successfully fetched task group
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/TaskGroup'
'401':
description: Unauthorized, provide a bearer token
'403':
description: Forbidden, you don't have permission to read from this project
'500':
description: Internal server error
security:
- {}
- Bearer: []
/api/v1/tasks/{id}:
get:
tags:
- v1
summary: Fetches the task specified by the id path parameter aswell as
description: |
Fetches the task specified by the id path parameter aswell as
each of its subtasks and information about the creator of the
task aswell as it's assignees in order to reduce the need for
subsequent requests.
If the project is public then this endpoint requires no
authentication, if it is private then a membership of the
project is required.
operationId: get_task
parameters:
- name: id
in: path
description: The id of the task
required: true
schema:
type: string
maxLength: 10
minLength: 10
responses:
'200':
description: Successfully retrieved task and sub-tasks
content:
application/json:
schema:
$ref: '#/components/schemas/FullTask'
'401':
description: Unauthorized, provide a bearer token
'403':
description: Forbidden, you don't have permission to access this task
'500':
description: Internal server error
security:
- {}
- Bearer: []
put:
tags:
- v1
summary: Edits the values of a task such as it's name or description,
description: |
Edits the values of a task such as it's name or description,
fields like the task's id or the parent project's id cannot
be changed.
All fields are optional, except for when the task group is
being updated, in which case the position of the task must
also be provided
This endpoint always requires authentication even if the
project is public and for the given member to have permission
to manage tasks
operationId: edit_task
parameters:
- name: id
in: path
description: The id of the task
required: true
schema:
type: string
maxLength: 10
minLength: 10
requestBody:
description: The values to update
content:
application/json:
schema:
$ref: '#/components/schemas/EditTask'
required: true
responses:
'200':
description: Successfully edited the task
content:
application/json:
schema:
$ref: '#/components/schemas/Task'
'400':
description: Bad request, if the task's group is updated a new position must be given
'401':
description: Unauthorized, provide a bearer token
'403':
description: Forbidden, you don't have permission to edit this task
'500':
description: Internal server error
security:
- Bearer: []
delete:
tags:
- v1
summary: Deletes a given task aswell as any references to it such as
description: |
Deletes a given task aswell as any references to it such as
sub-tasks, edges and assignments. This will also create an
audit entry
This endpoint always requires authentication even if the
project is public and for the given member to have permission
to manage tasks
operationId: remove_task
parameters:
- name: id
in: path
description: The id of the task
required: true
schema:
type: string
maxLength: 10
minLength: 10
responses:
'200':
description: Successfully removed the task
'401':
description: Unauthorized, provide a bearer token
'403':
description: Forbidden, you don't have permission to remove this task
'500':
description: Internal server error
security:
- Bearer: []
/api/v1/tasks/{id}/sub-tasks:
get:
tags:
- v1
summary: Fetches all the sub-tasks on a given task aswell as information
description: |
Fetches all the sub-tasks on a given task aswell as information
about the creators and assignees of the sub-tasks to reduce the
need for subsequent requests
If the project is public then this endpoint requires no
authentication, if it is private then a membership of the
project is required.
operationId: get_sub_tasks
parameters:
- name: id
in: path
description: The id of the parent tasks
required: true
schema:
type: string
maxLength: 10
minLength: 10
responses:
'200':
description: Successfully retrieved task and sub-taks
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/SubTask'
'401':
description: Unauthorized, provide a bearer token
'403':
description: Forbidden, you don't have permission to access this task
'500':
description: Internal server error
security:
- {}
- Bearer: []
post:
tags:
- v1
summary: Creates a new sub task on the given task, with default values
description: |
Creates a new sub task on the given task, with default values
except for the name which is provided upon creation. Other
values such as the task group and project id are extrapolated
and the are therefor not required, any optional fields such
as assignments will be empty. The position will default to
the last available position in the task group. An audit entry
will also be created
This endpoint always requires authentication even if the project
is public and for the given member to have permission to manage
tasks
operationId: create_sub_task
parameters:
- name: id
in: path
description: The id of the paretn task
required: true
schema:
type: string
maxLength: 10
minLength: 10
requestBody:
description: The data of the new sub task
content:
application/json:
schema:
$ref: '#/components/schemas/SubTaskBuilder'
required: true
responses:
'200':
description: Successfully created a sub sub task
content:
application/json:
schema:
$ref: '#/components/schemas/SubTask'
'401':
description: Unauthorized, provide a bearer token
'403':
description: Forbidden, you don't have permission to edit this task
'500':
description: Internal server error
security:
- Bearer: []
/api/v1/users:
get:
tags:
- v1
summary: Fetches information about the user provided by the given
description: |
Fetches information about the user provided by the given
bearer token. Despite the password hash being stored in the
user struct it is skipped during serialization for security.
This endpoint requires a bearer token to be provided in the
request headers.
operationId: get_current_user
responses:
'200':
description: Successfully retrieved user
content:
application/json:
schema:
$ref: '#/components/schemas/User'
'401':
description: Unauthorized, provide a bearer token
'500':
description: Internal server error
security:
- Bearer: []
/api/v1/users/login:
get:
tags:
- v1
summary: Logs in a user given their credentials and returns an
description: |
Logs in a user given their credentials and returns an
authorised bearer token which can be used to authenticate
This token should be placed in subsequent request headers
like so
Authorization: Bearer <token>
operationId: login
requestBody:
description: A login form
content:
application/json:
schema:
$ref: '#/components/schemas/Login'
required: true
responses:
'200':
description: Successfully retrieved user
content:
application/json:
schema:
$ref: '#/components/schemas/User'
'401':
description: Unauthorized, provide a bearer token
'500':
description: Internal server error
/api/v1/users/register:
post:
tags:
- v1
summary: Registers a new user and returns their information aswell as
description: |
Registers a new user and returns their information aswell as
an authorised bearer token to prevent the need to login with
a subsequent request.
operationId: register
requestBody:
description: A register form
content:
application/json:
schema:
$ref: '#/components/schemas/Register'
required: true
responses:
'200':
description: Successfully registered
content:
application/json:
schema:
$ref: '#/components/schemas/User'
'400':
description: Bad request
'500':
description: Internal server error
/api/v1/users/{id}:
get:
tags:
- v1
summary: Fetches information about a user given their id. If the user
description: |
Fetches information about a user given their id. If the user
does not exist 403 forbidden will be retured instead of 404
not found for security.
This endpoint may require authentication depending on the
privicy level set by the user.
operationId: get_user_by_id
parameters:
- name: id
in: path
description: The user's id
required: true
schema:
type: string
maxLength: 8
minLength: 8
responses:
'200':
description: Successfully retrieved user
content:
application/json:
schema:
$ref: '#/components/schemas/User'
'401':
description: Unauthorized, provide a bearer token
'403':
description: Forbidden, you don't have permission to access this user
'500':
description: Internal server error
security:
- {}
- Bearer: []
components:
schemas:
Actions:
type: array
items:
$ref: '#/components/schemas/NotificationAction'
description: |
Additional struct in order to be able to directly
deserialze the actions field of the notification
Audit:
type: object
required:
- id
- auditor
- project_id
- body
- timestamp
properties:
auditor:
$ref: '#/components/schemas/ProjectMemberId'
body:
type: string
description: |
The body of the audit
example: Example body
id:
$ref: '#/components/schemas/AuditId'
project_id:
$ref: '#/components/schemas/ProjectId'
timestamp:
type: string
format: date-time
description: |
The datetime the audit was created
AuditId:
type: string
EditProject:
type: object
properties:
icon_url:
type: string
description: |
The project's new icon's url
example: https://example.com/icon.png
nullable: true
name:
type: string
description: |
The project's new name (3 -> 30 charachters)
example: My project
nullable: true
maxLength: 30
minLength: 3
public_permissions:
type: integer
format: int64
description: |
The project's new visibility
example: 0
nullable: true
minimum: 0
EditSubTask:
type: object
properties:
assignee:
type: string
description: |
The assigned member's user id
example: '12345678'
nullable: true
maxLength: 8
minLength: 8
body:
type: string
description: |
The body (description of the sub task)
example: My Subtask
nullable: true
completed:
type: boolean
description: |
Weather the sub task has been completed
example: true
nullable: true
position:
type: integer
format: int64
description: |
The position of the sub task in task
example: 0
nullable: true
weight:
type: integer
format: int64
description: |
The influence of the sub task on total completion
example: 200
nullable: true
EditTask:
type: object
properties:
accent_colour:
type: string
description: |
The tasks new accent colour (hex) used in
the progress bar colour on tasks as well
as other places.
example: '#FFFFFF'
nullable: true
due:
type: string
format: date-time
description: |
The updated due date, must be in the future
nullable: true
information:
type: string
description: |
The updated task description
example: Information about my task
nullable: true
name:
type: string
description: |
The updated task name
example: My task
nullable: true
maxLength: 90
position:
type: integer
format: int64
description: |
The tasks new position, if this is higher