-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.swagger.yaml
2081 lines (2080 loc) · 58.7 KB
/
api.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.0
info:
title: Gateway
version: '1.0'
description: 'The gateway of the UEMS platform, used by the frontend web API'
contact:
name: St Andrews Students Association Ents Crew
email: convenor@entscrew.net
url: 'https://entscrew.net'
servers:
- url: 'http://localhost:3000'
paths:
/ents:
get:
summary: Retrieve ents states
tags:
- ents
responses:
'200':
description: OK
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/Result'
- type: object
properties:
result:
type: array
items:
$ref: '#/components/schemas/EntStateRepresentation'
examples: {}
operationId: get-ents
description: Retrieves all valid ents states currently loaded on the system
parameters:
- schema:
type: string
in: query
name: name
description: The name or a substring of the name to search with
- schema:
type: string
in: query
name: icon
description: The exact icon to search with
- schema:
type: string
pattern: '^#?([0-9A-Fa-f]{3}([0-9A-Fa-f]{3})?)$'
in: query
name: color
description: 'A 7 character hex colour code, this has to variance'
- schema:
type: string
in: query
name: id
description: 'The unique ent ID if fetching one result. Use /ent/:id if you know the result exists'
post:
summary: Creates a new ent state
operationId: post-ents
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/IDArrayResult'
description: Inserts a new ent state into the system
requestBody:
content:
application/json:
schema:
type: object
additionalProperties: false
properties:
name:
type: string
icon:
type: string
color:
type: string
pattern: '^#?([0-9A-Fa-f]{3}([0-9A-Fa-f]{3})?)$'
required:
- name
- icon
- color
tags:
- ents
'/ents/{entID}':
parameters:
- schema:
type: string
name: entID
in: path
required: true
description: The unique identifier for the ent state
get:
summary: Retrieves a single ent state
tags:
- ents
responses:
'200':
description: OK
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/Result'
- type: object
properties:
result:
$ref: '#/components/schemas/EntStateRepresentation'
operationId: get-ents-entID
description: Fetches a single valid ent state
parameters: []
delete:
summary: Removes an ent state
operationId: delete-ents-entID
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/IDArrayResult'
description: Removes the ent state identified by this ID
tags:
- ents
patch:
summary: Updates properties of an ent state
operationId: patch-ents-entID
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/IDArrayResult'
description: Updates properties of an ent state
requestBody:
content:
application/json:
schema:
type: object
properties:
name:
type: string
icon:
type: string
color:
type: string
pattern: '^#?([0-9A-Fa-f]{3}([0-9A-Fa-f]{3})?)$'
tags:
- ents
/equipment:
get:
summary: Fetches all equipment entries
tags:
- equipment
responses:
'200':
description: OK
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/Result'
- type: object
properties:
result:
type: array
items:
$ref: '#/components/schemas/EquipmentRepresentation'
operationId: get-equipment
description: Retrieves all pieces of equipment registered on the system with their populated attributes
parameters:
- schema:
type: string
in: query
name: id
description: 'the unique id of the equipment if fetching one result. Also use /equipment/:id'
- schema:
type: string
in: query
name: assetID
description: 'The asset identifier to search with, this must be an exact match'
- schema:
type: string
in: query
name: name
description: The name or a substring of it to search with
- schema:
type: string
in: query
name: manufacturer
description: The manufacturer to search with
- schema:
type: string
in: query
name: model
description: The desired model of the equipment
- schema:
type: string
in: query
name: miscIdentifier
description: Searches by the misc identifier associated with the equipment
- schema:
type: number
in: query
name: amount
description: 'The amount of equipment required in the results, this has no leniency'
- schema:
type: string
in: query
name: locationID
description: The system ID for the venue in which this equipment is placed
- schema:
type: string
in: query
name: locationSpecifier
description: The specification of where in the venue the equipment is located. This must be an exact match
- schema:
type: string
in: query
name: managerID
description: The system user id of the user who manages this piece of equipment
- schema:
type: number
in: query
name: date
description: The data at which this equipment was created
- schema:
type: string
in: query
name: category
description: 'The category of this equipment, must be an exact match'
post:
summary: Inserts a new piece of equipment
operationId: post-equipment
responses:
'200':
description: OK
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/Result'
- type: object
properties:
result:
type: array
items:
$ref: '#/components/schemas/EquipmentRepresentation'
description: Create a new piece of equipment in the system
requestBody:
content:
application/json:
schema:
type: object
additionalProperties: false
properties:
name:
type: string
manufacturer:
type: string
model:
type: string
amount:
type: number
locationID:
type: string
category:
type: string
assetID:
type: string
miscIdentifier:
type: string
locationSpecifier:
type: string
required:
- name
- manufacturer
- model
- amount
- locationID
- category
tags:
- equipment
'/equipment/{equipmentID}':
parameters:
- schema:
type: string
name: equipmentID
in: path
required: true
description: The unique equipment entry
get:
summary: Retrieves a single equipment element
tags:
- equipment
responses:
'200':
description: OK
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/Result'
- type: object
properties:
result:
$ref: '#/components/schemas/EquipmentRepresentation'
operationId: get-equipment-equipmentID
description: Fetches a single equipment element
delete:
summary: Deletes an existing equipment entry
operationId: delete-equipment-equipmentID
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/IDArrayResult'
description: Removes the equipment associated with this ID
tags:
- equipment
patch:
summary: Update properties of a piece of equipment
operationId: patch-equipment-equipmentID
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/IDArrayResult'
requestBody:
content:
application/json:
schema:
type: object
properties:
assetID:
type: string
name:
type: string
manufacturer:
type: string
model:
type: string
miscIdentifier:
type: string
amount:
type: number
locationID:
type: string
locationSpecifier:
type: string
managerID:
type: string
category:
type: string
description: Updates properties on a piece of equipment
tags:
- equipment
/events:
get:
summary: Retrieves events
tags:
- event
responses:
'200':
description: OK
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/Result'
- type: object
properties:
result:
type: array
items:
$ref: '#/components/schemas/EventRepresentation'
operationId: get-events
description: Fetches events by a given query
parameters:
- schema:
type: string
in: query
name: name
description: The name or a substring of the name
- schema:
type: number
in: query
name: start
description: The start date as unix timestamp
- schema:
type: number
in: query
name: end
description: The end date as unix timestamp
- schema:
type: number
in: query
name: attendance
description: The exact attendance figure required
- schema:
type: array
in: query
name: venueIDs
description: 'The array of venues required, modifiable via venueCriteria'
- schema:
type: string
enum:
- all
- any
in: query
name: venueCriteria
description: 'If all then all venues must be preset, if any then any of the venues match. Should be a comma separated list of venue IDs'
- schema:
type: string
in: query
name: entsID
description: The ID of an ent state that must be present
- schema:
type: string
in: query
name: stateID
description: The ID of a state that must be present
- schema:
type: number
in: query
name: startafter
description: 'The beginning of the start date range, as a unit timestamp'
- schema:
type: number
in: query
name: startbefore
description: 'The end of the start date range, as a unit timestamp'
- schema:
type: number
in: query
name: endafter
description: 'The beginning of the end date range, as a unit timestamp'
- schema:
type: number
in: query
name: endbefore
description: 'The end of the end date range, as a unit timestamp'
- schema:
type: number
in: query
name: attendanceGreater
description: The lowest attendance figure that is required
- schema:
type: number
in: query
name: attendanceLess
description: The greatest attendance figure permitted
post:
summary: Creates a new event
operationId: post-events
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/IDArrayResult'
description: Creates a new event
requestBody:
content:
application/json:
schema:
type: object
additionalProperties: false
properties:
name:
type: string
venue:
type: string
start:
type: number
end:
type: number
attendance:
type: number
state:
type: string
ents:
type: string
required:
- name
- venue
- start
- end
- attendance
tags:
- event
'/events/{eventID}':
parameters:
- schema:
type: string
name: eventID
in: path
required: true
description: The unique event ID
get:
summary: Fetches a single event instance
tags:
- event
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
additionalProperties: false
properties:
status:
type: string
enum:
- OK
- FAIL
event:
$ref: '#/components/schemas/EventRepresentation'
changelog:
type: array
items: {}
required:
- status
- event
- changelog
operationId: get-events-eventID
description: Returns the event with its changelog
patch:
summary: Updates an event
operationId: patch-events-eventID
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/IDArrayResult'
description: 'Updates an event and will save its modification in the changelog returned by GET /events/{eventID}'
requestBody:
content:
application/json:
schema:
type: object
properties:
name:
type: string
start:
type: number
end:
type: number
attendance:
type: number
addVenues:
type: array
items:
type: string
removeVenues:
type: array
items:
type: string
ents:
type: string
state:
type: string
description: ''
tags:
- event
delete:
summary: Deletes an event instance
operationId: delete-events-eventID
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/IDArrayResult'
description: Removes an event instance but will preserve an events changelog as an audit measure
tags:
- event
'/events/{eventID}/comments':
parameters:
- schema:
type: string
name: eventID
in: path
required: true
get:
summary: Retrieves comments on an event
tags:
- event
- comment
responses:
'200':
description: OK
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/Result'
- type: object
properties:
result:
type: array
items:
$ref: '#/components/schemas/CommentRepresentation'
operationId: get-events-eventID-comments
description: Returns all comments written for this event
post:
summary: Creates a new comment
operationId: post-events-eventID-comments
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/IDArrayResult'
description: Creates a new comment on an event. Currently events cannot be ammended once produced
requestBody:
content:
application/json:
schema:
type: object
additionalProperties: false
properties:
category:
type: string
requiresAttention:
type: boolean
body:
type: string
required:
- body
tags:
- event
- comment
'/states/{stateID}/events':
get:
summary: Fetches all the events for the given state
tags:
- event
- state
responses:
'200':
description: OK
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/Result'
- type: object
properties:
result:
type: array
items:
$ref: '#/components/schemas/EventRepresentation'
operationId: get-states-stateID-events
description: Fetches all the events which are defined for a given state
parameters:
- schema:
type: string
name: stateID
in: path
required: true
description: The unique state identifier
'/venues/{venueID}/events':
parameters:
- schema:
type: string
name: venueID
in: path
required: true
description: The unique venue identifier
get:
summary: Retrieves all events occuring the given venue
tags:
- venue
- event
responses:
'200':
description: OK
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/Result'
- type: object
properties:
result:
type: array
items:
$ref: '#/components/schemas/EventRepresentation'
operationId: get-venues-venueID-events
description: Retrieves all events occuring the given venue
/files:
get:
summary: Fetches all files matching a query
tags:
- file
responses:
'200':
description: OK
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/Result'
- type: object
properties:
result:
type: array
items:
$ref: '#/components/schemas/FileRepresentation'
operationId: get-files
description: Fetches all files matching a query. If the query is omitted it will return all files entered on the system
parameters:
- schema:
type: string
in: query
name: id
description: The unique ID of this file
- schema:
type: string
in: query
name: name
description: The name of a substring of the name of the file
- schema:
type: string
in: query
name: filename
description: The raw filename or a substring of the filename of the uploaded file
- schema:
type: number
in: query
name: size
description: 'The size of the file, in bytes'
- schema:
type: string
in: query
name: type
description: The type of file uploaded
- schema:
type: number
in: query
name: date
description: 'The date of the file upload, expressed as a unix timestamp'
- schema:
type: string
in: query
name: userid
description: The identifier of the user who uploaded the file
post:
summary: Creates a new file on the system
operationId: post-files
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/IDArrayResult'
description: This endpoint creates a new file meta-data entry on the server. This does not actually upload a file. This response will contain an uploadURI in the response where the file should actually be uploaded. The file should be sent as a multipart form data POST request to the uploadURI which encodes the file in the 'data' parameter.
requestBody:
content:
application/json:
schema:
type: object
additionalProperties: false
properties:
name:
type: string
filename:
type: string
size:
type: number
type:
type: string
required:
- name
- filename
- size
- type
tags:
- file
'/files/{fileID}':
parameters:
- schema:
type: string
name: fileID
in: path
required: true
description: The unique file ID
get:
summary: Fetches a single file entry
tags:
- file
responses:
'200':
description: OK
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/Result'
- type: object
properties:
result:
$ref: '#/components/schemas/FileRepresentation'
operationId: get-files-fileID
description: Returns a single file entry containing its download URL as well
patch:
summary: Updates properties of a single file
operationId: patch-files-fileID
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/IDArrayResult'
description: Updates details of a single file
requestBody:
content:
application/json:
schema:
type: object
properties:
name:
type: string
type:
type: string
tags:
- file
delete:
summary: Removes a file entry
operationId: delete-files-fileID
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/IDArrayResult'
description: 'This endpoint deletes the file meta-data entry and will optionally delete the file uploaded, depending on the servers retention policy for files. '
tags:
- file
'/files/{fileID}/events':
parameters:
- schema:
type: string
name: fileID
in: path
required: true
description: The unique file ID
get:
summary: Retrieves all files associated with the file
tags:
- file
- event
responses:
'200':
description: OK
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/Result'
- type: object
properties:
result:
type: array
items:
$ref: '#/components/schemas/EventRepresentation'
operationId: get-files-fileID-events
description: Returns all files that are associated with this file identifier
'/events/{eventID}/files':
parameters:
- schema:
type: string
name: eventID
in: path
required: true
description: The unique event identifier
get:
summary: Fetches all files associated with one event
tags:
- file
- event
responses:
'200':
description: OK
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/Result'
- type: object
properties:
result:
type: array
items:
$ref: '#/components/schemas/FileRepresentation'
operationId: get-events-eventID-files
description: Fetches all files associated with one event
post:
summary: Attaches a file to an event
operationId: post-events-eventID-files
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/IDArrayResult'
description: This endpoint binds an existing file to an existing event
requestBody:
content:
application/json:
schema:
type: object
additionalProperties: false
properties:
fileID:
type: string
required:
- fileID
tags:
- file
- event
'/events/{eventID}/files/{fileID}':
parameters:
- schema:
type: string
name: eventID
in: path
required: true
description: The event ID
- schema:
type: string
name: fileID
in: path
required: true
description: The file ID
delete:
summary: Deletes a single file binding
operationId: delete-events-eventID-files-fileID
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/IDArrayResult'
description: Unbinds an event from a file. This does not impact either entity
tags:
- event
- file
'/events/{eventID}/signups':
parameters:
- schema:
type: string
name: eventID
in: path
required: true
description: The unique identifier for this event
get:
summary: Retrieves all signups present on an event
tags:
- event
- signup
responses:
'200':
description: OK
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/Result'
- type: object
properties:
'':
type: array
items:
$ref: '#/components/schemas/SignupRepresentation'
operationId: get-events-eventID-signups
description: Retrieves the list of users currents signed up to this event and their role on the event
parameters:
- schema:
type: string