-
Notifications
You must be signed in to change notification settings - Fork 0
/
component.json
1404 lines (1404 loc) · 50.3 KB
/
component.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
{
"title": "Transport for London Unified",
"description": "Our unified API brings together data across all modes of transport into a single RESTful API. This API provides access to the most highly requested realtime and status infomation across all the modes of transport, in a single and consistent way. Access to the developer documentation is available at https://api.tfl.gov.uk",
"docsUrl": "",
"url": "https://api.apis.guru/v2/specs/tfl.gov.uk/v1/swagger.json",
"envVars": {},
"credentials": {
"fields": {
"server": {
"label": "Server",
"viewClass": "SelectView",
"model": [
"https://push-api-argon.tfl.gov.uk:8001/",
"--- Custom URL"
],
"required": true
},
"otherServer": {
"label": "Custom Server URL",
"viewClass": "TextFieldView"
},
"apiKey": {
"label": "app_key (apiKey)",
"viewClass": "TextFieldView",
"note": "API Key Authentication"
},
"appId": {
"label": "app_id (appId)",
"viewClass": "TextFieldView",
"note": "Application ID"
}
}
},
"triggers": {
"startFlow": {
"main": "./lib/triggers/startFlow.js",
"type": "polling",
"title": "Start Flow",
"fields": {}
}
},
"actions": {
"AccidentStats_Get": {
"main": "./lib/actions/AccidentStats_Get.js",
"title": "Gets all accident details for accidents occuring in the specified year",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/AccidentStats_Get.in.json",
"out": {
"type": "object"
}
}
},
"AirQuality_Get": {
"main": "./lib/actions/AirQuality_Get.js",
"title": "Gets air quality data feed",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/AirQuality_Get.in.json",
"out": {
"type": "object"
}
}
},
"BikePoint_GetAll": {
"main": "./lib/actions/BikePoint_GetAll.js",
"title": "Gets all bike point locations. The Place object has an addtionalProperties array which contains the nbBikes, nbDocks and nbSpaces\r\n numbers which give the status of the BikePoint. A mismatch in these numbers i.e. nbDocks - (nbBikes + nbSpaces) != 0 indicates broken docks.",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/BikePoint_GetAll.in.json",
"out": {
"type": "object"
}
}
},
"BikePoint_Search": {
"main": "./lib/actions/BikePoint_Search.js",
"title": "Search for bike stations by their name, a bike point's name often contains information about the name of the street\r\n or nearby landmarks, for example. Note that the search result does not contain the PlaceProperties i.e. the status\r\n or occupancy of the BikePoint, to get that information you should retrieve the BikePoint by its id on /BikePoint/id.",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/BikePoint_Search.in.json",
"out": {
"type": "object"
}
}
},
"BikePoint_Get": {
"main": "./lib/actions/BikePoint_Get.js",
"title": "Gets the bike point with the given id.",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/BikePoint_Get.in.json",
"out": {
"type": "object"
}
}
},
"Cabwise_Get": {
"main": "./lib/actions/Cabwise_Get.js",
"title": "Gets taxis and minicabs contact information",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Cabwise_Get.in.json",
"out": {
"type": "object"
}
}
},
"Journey_JourneyResults": {
"main": "./lib/actions/Journey_JourneyResults.js",
"title": "Perform a Journey Planner search from the parameters specified in simple types",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Journey_JourneyResults.in.json",
"out": {
"type": "object"
}
}
},
"Journey_Meta": {
"main": "./lib/actions/Journey_Meta.js",
"title": "Gets a list of all of the available journey planner modes",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Journey_Meta.in.json",
"out": {
"type": "object"
}
}
},
"Line_MetaDisruptionCategories": {
"main": "./lib/actions/Line_MetaDisruptionCategories.js",
"title": "Gets a list of valid disruption categories",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Line_MetaDisruptionCategories.in.json",
"out": {
"type": "object"
}
}
},
"Line_MetaModes": {
"main": "./lib/actions/Line_MetaModes.js",
"title": "Gets a list of valid modes",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Line_MetaModes.in.json",
"out": {
"type": "object"
}
}
},
"Line_MetaServiceTypes": {
"main": "./lib/actions/Line_MetaServiceTypes.js",
"title": "Gets a list of valid ServiceTypes to filter on",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Line_MetaServiceTypes.in.json",
"out": {
"type": "object"
}
}
},
"Line_MetaSeverity": {
"main": "./lib/actions/Line_MetaSeverity.js",
"title": "Gets a list of valid severity codes",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Line_MetaSeverity.in.json",
"out": {
"type": "object"
}
}
},
"Line_GetByMode": {
"main": "./lib/actions/Line_GetByMode.js",
"title": "Gets lines that serve the given modes.",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Line_GetByMode.in.json",
"out": {
"type": "object"
}
}
},
"Line_DisruptionByMode": {
"main": "./lib/actions/Line_DisruptionByMode.js",
"title": "Get disruptions for all lines of the given modes.",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Line_DisruptionByMode.in.json",
"out": {
"type": "object"
}
}
},
"Line_RouteByMode": {
"main": "./lib/actions/Line_RouteByMode.js",
"title": "Gets all lines and their valid routes for given modes, including the name and id of the originating and terminating stops for each route",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Line_RouteByMode.in.json",
"out": {
"type": "object"
}
}
},
"Line_StatusByMode": {
"main": "./lib/actions/Line_StatusByMode.js",
"title": "Gets the line status of for all lines for the given modes",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Line_StatusByMode.in.json",
"out": {
"type": "object"
}
}
},
"Line_Route": {
"main": "./lib/actions/Line_Route.js",
"title": "Get all valid routes for all lines, including the name and id of the originating and terminating stops for each route.",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Line_Route.in.json",
"out": {
"type": "object"
}
}
},
"Line_Search": {
"main": "./lib/actions/Line_Search.js",
"title": "Search for lines or routes matching the query string",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Line_Search.in.json",
"out": {
"type": "object"
}
}
},
"Line_StatusBySeverity": {
"main": "./lib/actions/Line_StatusBySeverity.js",
"title": "Gets the line status for all lines with a given severity\r\n A list of valid severity codes can be obtained from a call to Line/Meta/Severity",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Line_StatusBySeverity.in.json",
"out": {
"type": "object"
}
}
},
"Line_Get": {
"main": "./lib/actions/Line_Get.js",
"title": "Gets lines that match the specified line ids.",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Line_Get.in.json",
"out": {
"type": "object"
}
}
},
"Line_Arrivals": {
"main": "./lib/actions/Line_Arrivals.js",
"title": "Get the list of arrival predictions for given line ids based at the given stop",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Line_Arrivals.in.json",
"out": {
"type": "object"
}
}
},
"Line_Disruption": {
"main": "./lib/actions/Line_Disruption.js",
"title": "Get disruptions for the given line ids",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Line_Disruption.in.json",
"out": {
"type": "object"
}
}
},
"Line_LineRoutesByIds": {
"main": "./lib/actions/Line_LineRoutesByIds.js",
"title": "Get all valid routes for given line ids, including the name and id of the originating and terminating stops for each route.",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Line_LineRoutesByIds.in.json",
"out": {
"type": "object"
}
}
},
"Line_StatusByIds": {
"main": "./lib/actions/Line_StatusByIds.js",
"title": "Gets the line status of for given line ids e.g Minor Delays",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Line_StatusByIds.in.json",
"out": {
"type": "object"
}
}
},
"Line_Status": {
"main": "./lib/actions/Line_Status.js",
"title": "Gets the line status for given line ids during the provided dates e.g Minor Delays",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Line_Status.in.json",
"out": {
"type": "object"
}
}
},
"Line_RouteSequence": {
"main": "./lib/actions/Line_RouteSequence.js",
"title": "Gets all valid routes for given line id, including the sequence of stops on each route.",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Line_RouteSequence.in.json",
"out": {
"type": "object"
}
}
},
"Line_StopPoints": {
"main": "./lib/actions/Line_StopPoints.js",
"title": "Gets a list of the stations that serve the given line id",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Line_StopPoints.in.json",
"out": {
"type": "object"
}
}
},
"Line_Timetable": {
"main": "./lib/actions/Line_Timetable.js",
"title": "Gets the timetable for a specified station on the give line",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Line_Timetable.in.json",
"out": {
"type": "object"
}
}
},
"Line_TimetableTo": {
"main": "./lib/actions/Line_TimetableTo.js",
"title": "Gets the timetable for a specified station on the give line with specified destination",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Line_TimetableTo.in.json",
"out": {
"type": "object"
}
}
},
"Mode_GetActiveServiceTypes": {
"main": "./lib/actions/Mode_GetActiveServiceTypes.js",
"title": "Returns the service type active for a mode.\r\n Currently only supports tube",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Mode_GetActiveServiceTypes.in.json",
"out": {
"type": "object"
}
}
},
"Mode_Arrivals": {
"main": "./lib/actions/Mode_Arrivals.js",
"title": "Gets the next arrival predictions for all stops of a given mode",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Mode_Arrivals.in.json",
"out": {
"type": "object"
}
}
},
"Occupancy_GetBikePointsOccupancies": {
"main": "./lib/actions/Occupancy_GetBikePointsOccupancies.js",
"title": "Get the occupancy for bike points.",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Occupancy_GetBikePointsOccupancies.in.json",
"out": {
"type": "object"
}
}
},
"get_Occupancy_CarPark": {
"main": "./lib/actions/get_Occupancy_CarPark.js",
"title": "Gets the occupancy for all car parks that have occupancy data",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/get_Occupancy_CarPark.in.json",
"out": {
"type": "object"
}
}
},
"get_Occupancy_CarPark__id_": {
"main": "./lib/actions/get_Occupancy_CarPark__id_.js",
"title": "Gets the occupancy for a car park with a given id",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/get_Occupancy_CarPark__id_.in.json",
"out": {
"type": "object"
}
}
},
"Occupancy_GetAllChargeConnectorStatus": {
"main": "./lib/actions/Occupancy_GetAllChargeConnectorStatus.js",
"title": "Gets the occupancy for all charge connectors",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Occupancy_GetAllChargeConnectorStatus.in.json",
"out": {
"type": "object"
}
}
},
"Occupancy_GetChargeConnectorStatus": {
"main": "./lib/actions/Occupancy_GetChargeConnectorStatus.js",
"title": "Gets the occupancy for a charge connectors with a given id (sourceSystemPlaceId)",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Occupancy_GetChargeConnectorStatus.in.json",
"out": {
"type": "object"
}
}
},
"Place_GetByGeoBox": {
"main": "./lib/actions/Place_GetByGeoBox.js",
"title": "Gets the places that lie within the bounding box defined by the lat/lon of its north-west and south-east corners. Optionally filters\r\n on type and can strip properties for a smaller payload.",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Place_GetByGeoBox.in.json",
"out": {
"type": "object"
}
}
},
"Place_GetStreetsByPostCode": {
"main": "./lib/actions/Place_GetStreetsByPostCode.js",
"title": "Gets the set of streets associated with a post code.",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Place_GetStreetsByPostCode.in.json",
"out": {
"type": "object"
}
}
},
"Place_MetaCategories": {
"main": "./lib/actions/Place_MetaCategories.js",
"title": "Gets a list of all of the available place property categories and keys.",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Place_MetaCategories.in.json",
"out": {
"type": "object"
}
}
},
"Place_MetaPlaceTypes": {
"main": "./lib/actions/Place_MetaPlaceTypes.js",
"title": "Gets a list of the available types of Place.",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Place_MetaPlaceTypes.in.json",
"out": {
"type": "object"
}
}
},
"Place_Search": {
"main": "./lib/actions/Place_Search.js",
"title": "Gets all places that matches the given query",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Place_Search.in.json",
"out": {
"type": "object"
}
}
},
"Place_GetByType": {
"main": "./lib/actions/Place_GetByType.js",
"title": "Gets all places of a given type",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Place_GetByType.in.json",
"out": {
"type": "object"
}
}
},
"Place_Get": {
"main": "./lib/actions/Place_Get.js",
"title": "Gets the place with the given id.",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Place_Get.in.json",
"out": {
"type": "object"
}
}
},
"Place_GetAt": {
"main": "./lib/actions/Place_GetAt.js",
"title": "Gets any places of the given type whose geography intersects the given latitude and longitude. In practice this means the Place\r\n must be polygonal e.g. a BoroughBoundary.",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Place_GetAt.in.json",
"out": {
"type": "object"
}
}
},
"Place_GetOverlay": {
"main": "./lib/actions/Place_GetOverlay.js",
"title": "Gets the place overlay for a given set of co-ordinates and a given width/height.",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Place_GetOverlay.in.json",
"out": {
"type": "object"
}
}
},
"get_Road": {
"main": "./lib/actions/get_Road.js",
"title": "Gets all roads managed by TfL",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/get_Road.in.json",
"out": {
"type": "object"
}
}
},
"Road_MetaCategories": {
"main": "./lib/actions/Road_MetaCategories.js",
"title": "Gets a list of valid RoadDisruption categories",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Road_MetaCategories.in.json",
"out": {
"type": "object"
}
}
},
"Road_MetaSeverities": {
"main": "./lib/actions/Road_MetaSeverities.js",
"title": "Gets a list of valid RoadDisruption severity codes",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Road_MetaSeverities.in.json",
"out": {
"type": "object"
}
}
},
"Road_DisruptionById": {
"main": "./lib/actions/Road_DisruptionById.js",
"title": "Gets a list of active disruptions filtered by disruption Ids.",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Road_DisruptionById.in.json",
"out": {
"type": "object"
}
}
},
"Road_DisruptedStreets": {
"main": "./lib/actions/Road_DisruptedStreets.js",
"title": "Gets a list of disrupted streets. If no date filters are provided, current disruptions are returned.",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Road_DisruptedStreets.in.json",
"out": {
"type": "object"
}
}
},
"get_Road__ids_": {
"main": "./lib/actions/get_Road__ids_.js",
"title": "Gets the road with the specified id (e.g. A1)",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/get_Road__ids_.in.json",
"out": {
"type": "object"
}
}
},
"Road_Disruption": {
"main": "./lib/actions/Road_Disruption.js",
"title": "Get active disruptions, filtered by road ids",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Road_Disruption.in.json",
"out": {
"type": "object"
}
}
},
"Road_Status": {
"main": "./lib/actions/Road_Status.js",
"title": "Gets the specified roads with the status aggregated over the date range specified, or now until the end of today if no dates are passed.",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Road_Status.in.json",
"out": {
"type": "object"
}
}
},
"Search_Get": {
"main": "./lib/actions/Search_Get.js",
"title": "Search the site for occurrences of the query string. The maximum number of results returned is equal to the maximum page size\r\n of 100. To return subsequent pages, use the paginated overload.",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Search_Get.in.json",
"out": {
"type": "object"
}
}
},
"Search_BusSchedules": {
"main": "./lib/actions/Search_BusSchedules.js",
"title": "Searches the bus schedules folder on S3 for a given bus number.",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Search_BusSchedules.in.json",
"out": {
"type": "object"
}
}
},
"Search_MetaCategories": {
"main": "./lib/actions/Search_MetaCategories.js",
"title": "Gets the available search categories.",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Search_MetaCategories.in.json",
"out": {
"type": "object"
}
}
},
"Search_MetaSearchProviders": {
"main": "./lib/actions/Search_MetaSearchProviders.js",
"title": "Gets the available searchProvider names.",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Search_MetaSearchProviders.in.json",
"out": {
"type": "object"
}
}
},
"Search_MetaSorts": {
"main": "./lib/actions/Search_MetaSorts.js",
"title": "Gets the available sorting options.",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/Search_MetaSorts.in.json",
"out": {
"type": "object"
}
}
},
"StopPoint_GetByGeoPoint": {
"main": "./lib/actions/StopPoint_GetByGeoPoint.js",
"title": "Gets a list of StopPoints within {radius} by the specified criteria",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/StopPoint_GetByGeoPoint.in.json",
"out": {
"type": "object"
}
}
},
"StopPoint_MetaCategories": {
"main": "./lib/actions/StopPoint_MetaCategories.js",
"title": "Gets the list of available StopPoint additional information categories",
"fields": {
"verbose": {
"viewClass": "CheckBoxView",
"label": "Debug this step (log more data)"
}
},
"metadata": {
"in": "./lib/schemas/StopPoint_MetaCategories.in.json",
"out": {
"type": "object"
}