-
Notifications
You must be signed in to change notification settings - Fork 0
/
swagger.json
4473 lines (4473 loc) · 136 KB
/
swagger.json
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
{
"swagger": "2.0",
"info": {
"version": "v3",
"title": "PTV Timetable API - Version 3",
"description": "The PTV Timetable API provides direct access to Public Transport Victoria’s public transport timetable data.\r\n\r\nThe API returns scheduled timetable, route and stop data for all metropolitan and regional train, tram and bus services in Victoria, including Night Network(Night Train and Night Tram data are included in metropolitan train and tram services data, respectively, whereas Night Bus is a separate route type).\r\n\r\nThe API also returns real-time data for metropolitan train, tram and bus services (where this data is made available to PTV), as well as disruption information, stop facility information, and access to myki ticket outlet data.\r\n\r\nThis Swagger is for Version 3 of the PTV Timetable API. By using this documentation you agree to comply with the licence and terms of service.\r\n\r\nTrain timetable data is updated daily, while the remaining data is updated weekly, taking into account any planned timetable changes (for example, due to holidays or planned disruptions). The PTV timetable API is the same API used by PTV for its apps. To access the most up to date data PTV has (including real-time data) you must use the API dynamically.\r\n\r\nYou can access the PTV Timetable API through a HTTP or HTTPS interface, as follows:\r\n\r\n base URL / version number / API name / query string\r\nThe base URL is either:\r\n * http://timetableapi.ptv.vic.gov.au\r\nor\r\n * https://timetableapi.ptv.vic.gov.au\r\n\r\nThe Swagger JSON file is available at http://timetableapi.ptv.vic.gov.au/swagger/docs/v3\r\n\r\nFrequently asked questions are available on the PTV website at http://ptv.vic.gov.au/apifaq\r\n\r\nLinks to the following information are also provided on the PTV website at http://ptv.vic.gov.au/ptv-timetable-api/\r\n* How to register for an API key and calculate a signature\r\n* PTV Timetable API V2 to V3 Migration Guide\r\n* Documentation for Version 2 of the PTV Timetable API\r\n* PTV Timetable API Data Quality Statement\r\n\r\nAll information about how to use the API is in this documentation. PTV cannot provide technical support for the API.\r\n\r\nCredits: This page has been based on Steve Bennett's http://opentransportdata.org/, used with permission.\r\n",
"termsOfService": "See http://ptv.vic.gov.au/ptv-timetable-api/",
"contact": {
"name": "Public Transport Victoria",
"url": "http://ptv.vic.gov.au/digital"
},
"license": {
"name": "Creative Commons Attribution 4.0 International",
"url": "https://creativecommons.org/licenses/by/4.0/"
}
},
"host": "timetableapi.ptv.vic.gov.au",
"schemes": [
"http",
"https"
],
"paths": {
"/v3/departures/route_type/{route_type}/stop/{stop_id}": {
"get": {
"tags": [
"Departures"
],
"summary": "View departures for all routes from a stop",
"operationId": "Departures_GetForStop",
"consumes": [],
"produces": [
"application/json",
"text/json",
"text/html"
],
"parameters": [
{
"name": "route_type",
"in": "path",
"description": "Number identifying transport mode; values returned via RouteTypes API",
"required": true,
"type": "integer",
"format": "int32",
"enum": [
0,
1,
2,
3,
4
]
},
{
"name": "stop_id",
"in": "path",
"description": "Identifier of stop; values returned by Stops API",
"required": true,
"type": "integer",
"format": "int32"
},
{
"name": "platform_numbers",
"in": "query",
"description": "Filter by platform number at stop",
"required": false,
"type": "array",
"items": {
"type": "integer",
"format": "int32"
},
"collectionFormat": "multi"
},
{
"name": "direction_id",
"in": "query",
"description": "Filter by identifier of direction of travel; values returned by Directions API - /v3/directions/route/{route_id}",
"required": false,
"type": "integer",
"format": "int32"
},
{
"name": "look_backwards",
"in": "query",
"description": "Indicates if filtering runs (and their departures) to those that arrive at destination before date_utc (default = false). Requires max_results > 0.",
"required": false,
"type": "boolean"
},
{
"name": "gtfs",
"in": "query",
"description": "Indicates that stop_id parameter will accept \"GTFS stop_id\" data",
"required": false,
"type": "boolean"
},
{
"name": "date_utc",
"in": "query",
"description": "Filter by the date and time of the request (ISO 8601 UTC format) (default = current date and time)",
"required": false,
"type": "string",
"format": "date-time"
},
{
"name": "max_results",
"in": "query",
"description": "Maximum number of results returned",
"required": false,
"type": "integer",
"format": "int32"
},
{
"name": "include_cancelled",
"in": "query",
"description": "Indicates if cancelled services (if they exist) are returned (default = false) - metropolitan train only",
"required": false,
"type": "boolean"
},
{
"name": "expand",
"in": "query",
"description": "List objects to be returned in full (i.e. expanded) - options include: all, stop, route, run, direction, disruption",
"required": false,
"type": "array",
"items": {
"type": "string",
"enum": [
"All",
"Stop",
"Route",
"Run",
"Direction",
"Disruption"
]
},
"collectionFormat": "multi"
},
{
"name": "token",
"in": "query",
"description": "Please ignore",
"required": false,
"type": "string"
},
{
"name": "devid",
"in": "query",
"description": "Your developer id",
"required": false,
"type": "string"
},
{
"name": "signature",
"in": "query",
"description": "Authentication signature for request",
"required": false,
"type": "string"
}
],
"responses": {
"200": {
"description": "Service departures from the specified stop for all routes of the specified route type; departures are timetabled and real-time (if applicable).",
"schema": {
"$ref": "#/definitions/V3.DeparturesResponse"
}
},
"400": {
"description": "Invalid Request",
"schema": {
"$ref": "#/definitions/V3.ErrorResponse"
}
},
"403": {
"description": "Access Denied",
"schema": {
"$ref": "#/definitions/V3.ErrorResponse"
}
}
},
"deprecated": false
}
},
"/v3/departures/route_type/{route_type}/stop/{stop_id}/route/{route_id}": {
"get": {
"tags": [
"Departures"
],
"summary": "View departures for a specific route from a stop",
"operationId": "Departures_GetForStopAndRoute",
"consumes": [],
"produces": [
"application/json",
"text/json",
"text/html"
],
"parameters": [
{
"name": "route_type",
"in": "path",
"description": "Number identifying transport mode; values returned via RouteTypes API",
"required": true,
"type": "integer",
"format": "int32",
"enum": [
0,
1,
2,
3,
4
]
},
{
"name": "stop_id",
"in": "path",
"description": "Identifier of stop; values returned by Stops API",
"required": true,
"type": "integer",
"format": "int32"
},
{
"name": "route_id",
"in": "path",
"description": "Identifier of route; values returned by Routes API - v3/routes",
"required": true,
"type": "string"
},
{
"name": "direction_id",
"in": "query",
"description": "Filter by identifier of direction of travel; values returned by Directions API - /v3/directions/route/{route_id}",
"required": false,
"type": "integer",
"format": "int32"
},
{
"name": "look_backwards",
"in": "query",
"description": "Indicates if filtering runs (and their departures) to those that arrive at destination before date_utc (default = false). Requires max_results > 0.",
"required": false,
"type": "boolean"
},
{
"name": "gtfs",
"in": "query",
"description": "Indicates that stop_id parameter will accept \"GTFS stop_id\" data",
"required": false,
"type": "boolean"
},
{
"name": "date_utc",
"in": "query",
"description": "Filter by the date and time of the request (ISO 8601 UTC format) (default = current date and time)",
"required": false,
"type": "string",
"format": "date-time"
},
{
"name": "max_results",
"in": "query",
"description": "Maximum number of results returned",
"required": false,
"type": "integer",
"format": "int32"
},
{
"name": "include_cancelled",
"in": "query",
"description": "Indicates if cancelled services (if they exist) are returned (default = false) - metropolitan train only",
"required": false,
"type": "boolean"
},
{
"name": "expand",
"in": "query",
"description": "List objects to be returned in full (i.e. expanded) - options include: all, stop, route, run, direction, disruption",
"required": false,
"type": "array",
"items": {
"type": "string",
"enum": [
"All",
"Stop",
"Route",
"Run",
"Direction",
"Disruption"
]
},
"collectionFormat": "multi"
},
{
"name": "token",
"in": "query",
"description": "Please ignore",
"required": false,
"type": "string"
},
{
"name": "devid",
"in": "query",
"description": "Your developer id",
"required": false,
"type": "string"
},
{
"name": "signature",
"in": "query",
"description": "Authentication signature for request",
"required": false,
"type": "string"
}
],
"responses": {
"200": {
"description": "Service departures from the specified stop for the specified route (and route type); departures are timetabled and real-time (if applicable).",
"schema": {
"$ref": "#/definitions/V3.DeparturesResponse"
}
},
"400": {
"description": "Invalid Request",
"schema": {
"$ref": "#/definitions/V3.ErrorResponse"
}
},
"403": {
"description": "Access Denied",
"schema": {
"$ref": "#/definitions/V3.ErrorResponse"
}
}
},
"deprecated": false
}
},
"/v3/directions/route/{route_id}": {
"get": {
"tags": [
"Directions"
],
"summary": "View directions that a route travels in",
"operationId": "Directions_ForRoute",
"consumes": [],
"produces": [
"application/json",
"text/json",
"text/html"
],
"parameters": [
{
"name": "route_id",
"in": "path",
"description": "Identifier of route; values returned by Routes API - v3/routes",
"required": true,
"type": "integer",
"format": "int32"
},
{
"name": "token",
"in": "query",
"description": "Please ignore",
"required": false,
"type": "string"
},
{
"name": "devid",
"in": "query",
"description": "Your developer id",
"required": false,
"type": "string"
},
{
"name": "signature",
"in": "query",
"description": "Authentication signature for request",
"required": false,
"type": "string"
}
],
"responses": {
"200": {
"description": "The directions that a specified route travels in.",
"schema": {
"$ref": "#/definitions/V3.DirectionsResponse"
}
},
"400": {
"description": "Invalid Request",
"schema": {
"$ref": "#/definitions/V3.ErrorResponse"
}
},
"403": {
"description": "Access Denied",
"schema": {
"$ref": "#/definitions/V3.ErrorResponse"
}
}
},
"deprecated": false
}
},
"/v3/directions/{direction_id}": {
"get": {
"tags": [
"Directions"
],
"summary": "View all routes for a direction of travel",
"operationId": "Directions_ForDirection",
"consumes": [],
"produces": [
"application/json",
"text/json",
"text/html"
],
"parameters": [
{
"name": "direction_id",
"in": "path",
"description": "Identifier of direction of travel; values returned by Directions API - /v3/directions/route/{route_id}",
"required": true,
"type": "integer",
"format": "int32"
},
{
"name": "token",
"in": "query",
"description": "Please ignore",
"required": false,
"type": "string"
},
{
"name": "devid",
"in": "query",
"description": "Your developer id",
"required": false,
"type": "string"
},
{
"name": "signature",
"in": "query",
"description": "Authentication signature for request",
"required": false,
"type": "string"
}
],
"responses": {
"200": {
"description": "All routes that travel in the specified direction.",
"schema": {
"$ref": "#/definitions/V3.DirectionsResponse"
}
},
"400": {
"description": "Invalid Request",
"schema": {
"$ref": "#/definitions/V3.ErrorResponse"
}
},
"403": {
"description": "Access Denied",
"schema": {
"$ref": "#/definitions/V3.ErrorResponse"
}
}
},
"deprecated": false
}
},
"/v3/directions/{direction_id}/route_type/{route_type}": {
"get": {
"tags": [
"Directions"
],
"summary": "View all routes of a particular type for a direction of travel",
"operationId": "Directions_ForDirectionAndType",
"consumes": [],
"produces": [
"application/json",
"text/json",
"text/html"
],
"parameters": [
{
"name": "direction_id",
"in": "path",
"description": "Identifier of direction of travel; values returned by Directions API - /v3/directions/route/{route_id}",
"required": true,
"type": "integer",
"format": "int32"
},
{
"name": "route_type",
"in": "path",
"description": "Number identifying transport mode; values returned via RouteTypes API",
"required": true,
"type": "integer",
"format": "int32",
"enum": [
0,
1,
2,
3,
4
]
},
{
"name": "token",
"in": "query",
"description": "Please ignore",
"required": false,
"type": "string"
},
{
"name": "devid",
"in": "query",
"description": "Your developer id",
"required": false,
"type": "string"
},
{
"name": "signature",
"in": "query",
"description": "Authentication signature for request",
"required": false,
"type": "string"
}
],
"responses": {
"200": {
"description": "All routes of the specified route type that travel in the specified direction.",
"schema": {
"$ref": "#/definitions/V3.DirectionsResponse"
}
},
"400": {
"description": "Invalid Request",
"schema": {
"$ref": "#/definitions/V3.ErrorResponse"
}
},
"403": {
"description": "Access Denied",
"schema": {
"$ref": "#/definitions/V3.ErrorResponse"
}
}
},
"deprecated": false
}
},
"/v3/disruptions": {
"get": {
"tags": [
"Disruptions"
],
"summary": "View all disruptions for all route types",
"operationId": "Disruptions_GetAllDisruptions",
"consumes": [],
"produces": [
"application/json",
"text/json",
"text/html"
],
"parameters": [
{
"name": "route_types",
"in": "query",
"description": "Filter by route_type; values returned via RouteTypes API",
"required": false,
"type": "array",
"items": {
"type": "integer",
"format": "int32",
"enum": [
0,
1,
2,
3,
4
]
},
"collectionFormat": "multi"
},
{
"name": "disruption_modes",
"in": "query",
"description": "Filter by disruption_mode; values returned via v3/disruptions/modes API",
"required": false,
"type": "array",
"items": {
"type": "integer",
"format": "int32",
"enum": [
1,
2,
3,
4,
5,
7,
8,
9,
10,
11,
12,
13,
14,
100
]
},
"collectionFormat": "multi"
},
{
"name": "disruption_status",
"in": "query",
"description": "Filter by status of disruption",
"required": false,
"type": "string",
"enum": [
"current",
"planned"
]
},
{
"name": "token",
"in": "query",
"description": "Please ignore",
"required": false,
"type": "string"
},
{
"name": "devid",
"in": "query",
"description": "Your developer id",
"required": false,
"type": "string"
},
{
"name": "signature",
"in": "query",
"description": "Authentication signature for request",
"required": false,
"type": "string"
}
],
"responses": {
"200": {
"description": "All disruption information for all route types.",
"schema": {
"$ref": "#/definitions/V3.DisruptionsResponse"
}
},
"400": {
"description": "Invalid Request",
"schema": {
"$ref": "#/definitions/V3.ErrorResponse"
}
},
"403": {
"description": "Access Denied",
"schema": {
"$ref": "#/definitions/V3.ErrorResponse"
}
}
},
"deprecated": false
}
},
"/v3/disruptions/route/{route_id}": {
"get": {
"tags": [
"Disruptions"
],
"summary": "View all disruptions for a particular route",
"operationId": "Disruptions_GetDisruptionsByRoute",
"consumes": [],
"produces": [
"application/json",
"text/json",
"text/html"
],
"parameters": [
{
"name": "route_id",
"in": "path",
"description": "Identifier of route; values returned by Routes API - v3/routes",
"required": true,
"type": "integer",
"format": "int32"
},
{
"name": "disruption_status",
"in": "query",
"description": "Filter by status of disruption",
"required": false,
"type": "string",
"enum": [
"current",
"planned"
]
},
{
"name": "token",
"in": "query",
"description": "Please ignore",
"required": false,
"type": "string"
},
{
"name": "devid",
"in": "query",
"description": "Your developer id",
"required": false,
"type": "string"
},
{
"name": "signature",
"in": "query",
"description": "Authentication signature for request",
"required": false,
"type": "string"
}
],
"responses": {
"200": {
"description": "All disruption information (if any exists) for the specified route.",
"schema": {
"$ref": "#/definitions/V3.DisruptionsResponse"
}
},
"400": {
"description": "Invalid Request",
"schema": {
"$ref": "#/definitions/V3.ErrorResponse"
}
},
"403": {
"description": "Access Denied",
"schema": {
"$ref": "#/definitions/V3.ErrorResponse"
}
}
},
"deprecated": false
}
},
"/v3/disruptions/route/{route_id}/stop/{stop_id}": {
"get": {
"tags": [
"Disruptions"
],
"summary": "View all disruptions for a particular route and stop",
"operationId": "Disruptions_GetDisruptionsByRouteAndStop",
"consumes": [],
"produces": [
"application/json",
"text/json",
"text/html"
],
"parameters": [
{
"name": "route_id",
"in": "path",
"description": "Identifier of route; values returned by Routes API - v3/routes",
"required": true,
"type": "integer",
"format": "int32"
},
{
"name": "stop_id",
"in": "path",
"description": "Identifier of stop; values returned by Stops API - v3/stops",
"required": true,
"type": "integer",
"format": "int32"
},
{
"name": "disruption_status",
"in": "query",
"description": "Filter by status of disruption",
"required": false,
"type": "string",
"enum": [
"current",
"planned"
]
},
{
"name": "token",
"in": "query",
"description": "Please ignore",
"required": false,
"type": "string"
},
{
"name": "devid",
"in": "query",
"description": "Your developer id",
"required": false,
"type": "string"
},
{
"name": "signature",
"in": "query",
"description": "Authentication signature for request",
"required": false,
"type": "string"
}
],
"responses": {
"200": {
"description": "All disruption information (if any exists) for the specified route and stop.",
"schema": {
"$ref": "#/definitions/V3.DisruptionsResponse"
}
},
"400": {
"description": "Invalid Request",
"schema": {
"$ref": "#/definitions/V3.ErrorResponse"
}
},
"403": {
"description": "Access Denied",
"schema": {
"$ref": "#/definitions/V3.ErrorResponse"
}
}
},
"deprecated": false
}
},
"/v3/disruptions/stop/{stop_id}": {
"get": {
"tags": [
"Disruptions"
],
"summary": "View all disruptions for a particular stop",
"operationId": "Disruptions_GetDisruptionsByStop",
"consumes": [],
"produces": [
"application/json",
"text/json",
"text/html"
],
"parameters": [
{
"name": "stop_id",
"in": "path",
"description": "Identifier of stop; values returned by Stops API - v3/stops",
"required": true,
"type": "integer",
"format": "int32"
},
{
"name": "disruption_status",
"in": "query",
"description": "Filter by status of disruption",
"required": false,
"type": "string",
"enum": [
"current",
"planned"
]
},
{
"name": "token",
"in": "query",
"description": "Please ignore",
"required": false,
"type": "string"
},
{
"name": "devid",
"in": "query",
"description": "Your developer id",
"required": false,
"type": "string"
},
{
"name": "signature",
"in": "query",
"description": "Authentication signature for request",
"required": false,
"type": "string"
}
],
"responses": {
"200": {
"description": "All disruption information (if any exists) for the specified stop.",
"schema": {
"$ref": "#/definitions/V3.DisruptionsResponse"
}
},
"400": {
"description": "Invalid Request",
"schema": {
"$ref": "#/definitions/V3.ErrorResponse"
}
},
"403": {
"description": "Access Denied",
"schema": {
"$ref": "#/definitions/V3.ErrorResponse"
}
}
},
"deprecated": false
}
},
"/v3/disruptions/{disruption_id}": {
"get": {
"tags": [
"Disruptions"
],
"summary": "View a specific disruption",
"operationId": "Disruptions_GetDisruptionById",
"consumes": [],
"produces": [
"application/json",
"text/json",
"text/html"
],
"parameters": [
{
"name": "disruption_id",
"in": "path",
"description": "Identifier of disruption; values returned by Disruptions API - /v3/disruptions OR /v3/disruptions/route/{route_id}",
"required": true,
"type": "integer",
"format": "int64"
},
{
"name": "token",
"in": "query",
"description": "Please ignore",
"required": false,
"type": "string"
},
{
"name": "devid",
"in": "query",
"description": "Your developer id",
"required": false,
"type": "string"
},
{
"name": "signature",
"in": "query",
"description": "Authentication signature for request",
"required": false,
"type": "string"
}
],
"responses": {
"200": {
"description": "Disruption information for the specified disruption ID.",
"schema": {
"$ref": "#/definitions/V3.DisruptionResponse"
}
},
"400": {
"description": "Invalid Request",
"schema": {
"$ref": "#/definitions/V3.ErrorResponse"
}
},
"403": {
"description": "Access Denied",
"schema": {
"$ref": "#/definitions/V3.ErrorResponse"
}
}
},
"deprecated": false
}
},
"/v3/disruptions/modes": {
"get": {
"tags": [
"Disruptions"
],
"summary": "Get all disruption modes",
"operationId": "Disruptions_GetDisruptionModes",
"consumes": [],
"produces": [
"application/json",
"text/json",
"text/html"
],
"parameters": [
{
"name": "token",
"in": "query",
"description": "Please ignore",
"required": false,
"type": "string"
},
{
"name": "devid",
"in": "query",
"description": "Your developer id",