-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.yaml
1307 lines (1301 loc) · 38.3 KB
/
api.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.1
info:
title: RUTPAM API
version: 0.3-dev
description: >
This API defines the methods and objects to provide and receive data from/to the server.
The design extends GTFS specification to a more abstract and complete knowledge base about the stored public transit networks.
Currently supported standards:
- GTFS
- GTFS Google Transit's Extensions
Planned support standards:
* GTFS-RT (Real Time)
* GTFS-Flex
* GBFS
contact:
name: Néstor Lora
email: [email protected]
license:
name: MIT
servers:
- url: 'http://rutpam.titan.geeklab.es:5000'
description: Development local HTTP Server
# Method legend:
# GET - Get data (not modified)
# POST - Create resource if not exists
# PUT - Create resource
# DELETE - Delete/Disable/Expire resource
# PATCH - Edit resource
paths:
/info:
summary: Server information
get:
tags:
- Server
summary: Getting the server status
description: Returns server information
security: []
responses:
200:
description: Successful operation
content:
application/json:
schema:
type: object
properties:
version:
type: string
description: Server version
example: 1.0.0
contact:
type: string
description: Email contact
example: webmaster@localhost
web:
type: string
description: Project website
example: 'http://localhost/RUTPAM'
maintenance:
type: boolean
description: Show if the server may contain inaccurate information due to maintenance works
example: false
# /auth - TODO
/networks:
get:
tags:
- Networks
summary: Get all networks
description: Returns all the networks in the database
parameters: []
responses:
200:
$ref: '#/components/responses/200Networks'
put:
tags:
- Networks
summary: Add new network
description: Save new network in database
parameters: []
requestBody:
description: Network object that needs to be added to database
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Network'
responses:
200:
$ref: '#/components/responses/200Networks'
400:
$ref: '#/components/responses/400BadRequest'
patch:
tags:
- Networks
summary: Update stored network
description: Replace stored network in databes with new version.
parameters: []
requestBody:
description: >
Network object to be updated in database<br>
You must provide a valid Network.id to complete the operation
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Network'
responses:
200:
$ref: '#/components/responses/200Networks'
400:
$ref: '#/components/responses/400BadRequest'
/networks/{id}:
get:
tags:
- Networks
summary: Get a single network
description: Return a single network
parameters:
- in: path
name: id
description: Network ID
required: true
schema:
$ref: '#/components/schemas/objectId'
responses:
200:
$ref: '#/components/responses/200Networks'
400:
$ref: '#/components/responses/400BadRequest'
delete:
tags:
- Networks
summary: Deletes a single network
description: >
Removes a network from de database <br>
DANGER! This method does not removes all the network's associated elements
parameters:
- in: path
name: id
description: Network ID
required: true
schema:
$ref: '#/components/schemas/objectId'
responses:
200:
$ref: '#/components/responses/200Generic'
400:
$ref: '#/components/responses/400BadRequest'
/networks/find:
post:
tags:
- Networks
summary: Search networks
description: Returns all the networks matching the parameters
requestBody:
description: Network object with query values or RegExp
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Network'
responses:
200:
description: OK
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ApiResponse'
- type: object
properties:
networks:
type: array
items:
$ref: '#/components/schemas/Network'
400:
$ref: '#/components/responses/400BadRequest'
/stations:
get:
tags:
- Stations
summary: Get all stations
description: Returns all the stations in the database
responses:
'200':
description: Successful operation
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ApiResponse'
- type: object
properties:
stations:
type: array
items:
$ref: '#/components/schemas/Station'
/stations/{id}:
get:
tags:
- Stations
summary: Find station by ID
description: Return a single station
parameters:
- in: path
name: id
description: Station ID
required: true
schema:
$ref: '#/components/schemas/objectId'
responses:
'200':
description: OK
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ApiResponse'
- type: object
properties:
stations:
type: array
items:
$ref: '#/components/schemas/Station'
/stations/findByName:
get:
tags:
- Stations
summary: Find station by name
description: Returns a list of stations that contains the provided name
parameters:
- in: query
name: name
description: Station name
required: false
schema:
type: integer
format: int32
responses:
'200':
description: OK
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ApiResponse'
- type: object
properties:
stations:
type: array
items:
$ref: '#/components/schemas/Station'
/routes:
get:
tags:
- Routes
summary: Get all routes
description: Returns all the routes in the database
responses:
'200':
description: OK
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ApiResponse'
- type: object
properties:
routes:
type: array
items:
$ref: '#/components/schemas/Route'
/routes/{id}:
get:
tags:
- Routes
summary: Find route by ID
description: Return a single route
parameters:
- in: path
name: id
description: Station ID
required: true
schema:
$ref: '#/components/schemas/objectId'
responses:
'200':
description: OK
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ApiResponse'
- type: object
properties:
routes:
type: array
items:
$ref: '#/components/schemas/Route'
/routes/type:
get:
tags:
- Routes
summary: Get all route types
description: Returns all the route types in the database
responses:
'200':
description: OK
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ApiResponse'
- type: object
properties:
routeTypes:
type: array
items:
$ref: '#/components/schemas/RouteType'
/subroutes:
get:
tags:
- Subroutes
summary: Get all subroutes
description: Returns all the active subroutes in the database
responses:
'200':
description: OK
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ApiResponse'
- type: object
properties:
routes:
type: array
items:
$ref: '#/components/schemas/Itinerary'
/subroutes/findByRoute:
get:
tags:
- Subroutes
summary: Find subroutes by route ID
description: Return multiple subroutes under a parent route
parameters:
- in: path
name: routeId
description: Parent route ID
required: true
schema:
type: integer
format: int32
responses:
'200':
description: OK
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ApiResponse'
- type: object
properties:
routes:
type: array
items:
$ref: '#/components/schemas/Itinerary'
/agencies:
get:
tags:
- Agencies
summary: Get all agencies
description: Returns all the agencies in the database
responses:
'200':
description: OK
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ApiResponse'
- type: object
properties:
agencies:
type: array
items:
$ref: '#/components/schemas/Agency'
/agencies/{id}:
get:
tags:
- Agencies
summary: Find agency by ID
description: Return a single agency
parameters:
- in: path
name: id
description: Agency ID
required: true
schema:
$ref: '#/components/schemas/objectId'
responses:
'200':
description: OK
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ApiResponse'
- type: object
properties:
agencies:
type: array
items:
$ref: '#/components/schemas/Agency'
/stops:
get:
tags:
- Stops
summary: Get all stops
description: Returns al the stops in the database
responses:
'200':
description: OK
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ApiResponse'
- type: object
properties:
stops:
type: array
items:
$ref: '#/components/schemas/Stop'
/stops/{id}:
get:
tags:
- Stops
summary: Find stop by ID
description: Return a single stop
parameters:
- in: path
name: id
description: Stop ID
required: true
schema:
type: integer
format: int32
responses:
'200':
description: OK
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ApiResponse'
- type: object
properties:
stations:
type: array
items:
$ref: '#/components/schemas/Station'
/transfers:
get:
tags:
- Transfers
summary: Get all transfers
description: Returns all the defined transfers in the database
responses:
'200':
description: OK
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ApiResponse'
- type: object
properties:
transfers:
type: array
items:
$ref: '#/components/schemas/Transfer'
components:
schemas:
Network:
type: object
properties:
id:
allOf:
- $ref: '#/components/schemas/objectId'
- description: Network ID
shortName:
type: string
description: Contracted name or acronym used for the network
example: "CTMAM"
longName:
type: string
description: Extended or full-version name of the network
example: "Consorcio de Transportes Metropolitanos del Área de Málaga"
Route:
type: object
properties:
id:
allOf:
- $ref: '#/components/schemas/objectId'
- description: Route ID
network:
allOf:
- $ref: '#/components/schemas/objectId'
- description: Network ID
shortName:
type: string
description: >
Short name of a route. This will often be a short, abstract identifier like "32", "100X", or "Green" that riders use to identify a route, but which doesn't give any indication of what places the route serves.
example: N1
longName:
type: string
description: >
Full name of a route. This name is generally more descriptive than the shortName and often includes the route's destination or stop.
example: Puerta Blanca - Alameda Principal - El Palo
agencies:
type: array
items:
$ref: '#/components/schemas/LineAgency'
eid:
type: string
description: External ID (defined by the provider)
example: 41
itineraries:
type: array
items:
$ref: '#/components/schemas/Itinerary'
description:
type: string
description: >
Description of a route that provides useful, quality information.
Do not simply duplicate the name of the route.
example: >
"A" trains operate between Inwood-207 St, Manhattan and Far Rockaway-Mott Avenue, Queens at all times. Also from about 6AM until about midnight, additional "A" trains operate between Inwood-207 St and Lefferts Boulevard (trains typically alternate between Lefferts Blvd and Far Rockaway).
type:
allOf:
- $ref: '#/components/schemas/objectId'
- description: Route Type ID
startDate:
$ref: '#/components/schemas/startDate'
endDate:
$ref: '#/components/schemas/endDate'
observations:
type: string
description: Aditional comments, informal data.
example: Traslado de paradas por obras en Alameda Ppal
color:
type: string
description: HTML-format route color designation that matches public facing material
minLength: 6
maxLength: 6
example: 00FF00
textColor:
type: string
description: HTML-format legible color to use for text drawn against a background of the previous color
minLength: 6
maxLength: 6
example: FFFFFF
url:
type: string
description: URL of a web page about the particular route.
example: 'https://emtmalaga.es/linea/65'
RouteType:
type: object
properties:
gtfs_code:
type: integer
enum:
- 0
- 1
- 2
- 3
- 4
- 5
- 6
- 7
description: >
Standard GTFS route_type code:
* `0` - Tram, Streetcar, Light rail. Any light rail or street level system within a metropolitan area.
* `1` - Subway, Metro. Any underground rail system within a metropolitan area.
* `2` - Rail. Used for intercity or long-distance travel.
* `3` - Bus. Used for short- and long-distance bus routes.
* `4` - Ferry. Used for short- and long-distance boat service.
* `5` - Cable car. Used for street-level cable cars where the cable runs beneath the car.
* `6` - Gondola, Suspended cable car. Typically used for aerial cable cars where the car is suspended from the cable.
* `7` - Funicular. Any rail system designed for steep inclines.
gtfs_ext_code:
type: integer
enum:
- 100
- 101
- 102
- 103
- 104
- 105
- 106
- 107
- 108
- 109
- 110
- 111
- 112
- 113
- 114
- 115
- 116
- 117
- 200
- 201
- 202
- 203
- 204
- 205
- 206
- 207
- 208
- 209
- 400
- 401
- 402
- 403
- 404
- 405
- 700
- 701
- 702
- 703
- 704
- 705
- 706
- 707
- 708
- 709
- 710
- 711
- 712
- 713
- 714
- 715
- 716
- 717
- 800
- 900
- 901
- 902
- 903
- 904
- 905
- 906
- 907
- 1000
- 1100
#- 1200
- 1300
- 1400
- 1500
#- 1501
- 1502
- 1503
- 1504
- 1505
- 1506
- 1507
- 1700
description: >
Google Transit's extended GTFS route_type code <br>
[Legend](https://developers.google.com/transit/gtfs/reference/extended-route-types?) <br>
* `100` - **Railway Service**
* `101` - High Speed Rail Service
* `102` - Long Distance Trains
* `103` - Inter Regional Rail Service
* `104` - Car Transport Rail Service
* `105` - Sleeper Rail Service
* `106` - Regional Rail Service
* `107` - Tourist Railway Service
* `108` - Rail Shuttle (within complex)
* `109` - Suburban Railway
* `110` - Replacement Rail Service
* `111` - Special Rail Service
* `112` - Lorry Transport Rail Service
* `113` - All Rail Services
* `114` - Cross-Country Rail Service
* `115` - Vehicle Transport Rail Service
* `116` - Rack and Pinion Railway
* `117` - Additional Rail Service
* `200` - **Coach Service**
* `201` - International Coach Service
* `202` - National Coach Service
* `203` - Shuttle Coach Service
* `204` - Regional Coach Service
* `205` - Special Coach Service
* `206` - Sightseeing Coach Service
* `207` - Tourist Coach Service
* `208` - Commuter Coach Service
* `209` - All Coach Services
* `400` - **Urban Railway Service**
* `401` - Metro service
* `402` - Underground Service
* `403` - Urban Railway Service
* `404` - All Urban Railway Services
* `405` - Monorail
* `700` - **Bus Service**
* `701` - Regional Bus Service
* `702` - Express Bus Service
* `703` - Stopping Bus Service
* `704` - Local Bus Service
* `705` - Night Bus Service
* `706` - Post Bus Service
* `707` - Special Needs Bus
* `708` - Mobility Bus Service
* `709` - Mobility Bus for Registered Disabled
* `710` - Sightseeing Bus
* `711` - Shuttle Bus
* `712` - School Bus
* `713` - School and Public Service Bus
* `714` - Rail Replacement Bus Service
* `715` - Demand and Response Bus Service
* `716` - All Bus Services
* `717` - Share Taxi Service
* `800` - **Trolleybus Service**
* `900` - **Tram Service**
* `901` - City Tram Service
* `902` - Local Tram Service
* `903` - Regional Tram Service
* `904` - Sightseeing Tram Service
* `905` - Shuttle Tram
* `906` - All Tram Services
* `907` - Cable Tram
* `1000` - **Water Transport Service**
* `1100` - **Air Service**
* `1300` - **Aerial Lift Service**
* `1400` - **Funicular Service**
* `1500` - **Taxi Service**
* `1502` - Water Taxi Service
* `1503` - Rail Taxi Service
* `1504` - Bike Taxi Service
* `1505` - Licensed Taxi Service
* `1506` - Private Hire Service Vehicle
* `1507` - All Taxi Services
* `1700` - **Miscellaneous Service**
LineAgency:
type: object
properties:
agency:
allOf:
- $ref: '#/components/schemas/objectId'
- description: Agency ID
role:
allOf:
- $ref: '#/components/schemas/objectId'
- description: Agency role ID
Agency:
type: object
properties:
id:
allOf:
- $ref: '#/components/schemas/objectId'
- description: Agency ID
name:
type: string
description: Agency name
example: 'Avanza Movilidad Urbana, S.L.U'
info:
type: array
items:
$ref: '#/components/schemas/AgencyInfo'
# TODO Feature: Agency Roles
# agency_id, services[]{line, role}
AgencyInfo:
type: object
properties:
type:
allOf:
- $ref: '#/components/schemas/objectId'
- description: AgencyInfoType ID
value:
type: string
description: Actual piece of information
example: [email protected]
description:
type: string
description: Optional description of value
example: Billing
AgencyInfoType:
type: object
properties:
id:
allOf:
- $ref: '#/components/schemas/objectId'
- description: Info type ID
name:
type: string
description: Type name
example: URL
description:
type: string
description: Type description
example: URI in RFC-3986 format
Itinerary:
type: object
properties:
eid:
type: string
description: External ID (defined by the provider)
example: '41.5'
type:
allOf:
- $ref: '#/components/schemas/objectId'
- description: Subroute type ID (Going route/Return route/Circular route/Positioning move)
headsign:
type: string
description: Headsign indication text
example: El Palo
stops:
type: array
items:
$ref: '#/components/schemas/ItineraryStop'
description:
type: string
description: Subroute description
example: Ida. Itinerario 1
ItineraryStop:
type: object
properties:
stop:
allOf:
- $ref: '#/components/schemas/objectId'
- description: Stop ID
sequence:
type: integer
format: int32
description: Sequence order of the stop in the subroute
example: 14
pickup:
allOf:
- $ref: '#/components/schemas/objectId'
- description: Pickup or Drop off type ID
dropoff:
allOf:
- $ref: '#/components/schemas/objectId'
- description: Pickup or Drop off type ID
Stop:
type: object
properties:
id:
allOf:
- $ref: '#/components/schemas/objectId'
- description: Stop ID
eid:
type: string
description: External ID (defined by the provider)
example: 41
name:
type: string
description: Stop name. Usually describes the location around the stop.
example: Alameda Principal - Sur
townArea:
allOf:
- $ref: '#/components/schemas/objectId'
- description: Town area ID
station:
allOf:
- $ref: '#/components/schemas/objectId'
- description: Parent station ID (if exists)
platform:
type: string
description: >
Platform identifier for a platform stop (a stop belonging to a station).
This should be just the platform identifier (eg. "G" or "3"). Words like “platform”
or "track" should not be included.
example: 4B
network:
allOf:
- $ref: '#/components/schemas/objectId'
- description: Network ID
zone:
allOf:
- $ref: '#/components/schemas/objectId'
- description: Zone ID
address:
type: string
description: Station address (if it has one)
example: Paseo del Parque 21
location:
$ref: '#/components/schemas/LatLong'
url:
type: string
description: URL of a web page about the stop.
example: 'http://www.emtmalaga.es/emt-mobile/informacionParada.html?codParada=151'
startDate:
$ref: '#/components/schemas/startDate'
endDate:
$ref: '#/components/schemas/endDate'
HaltType:
type: object
properties:
id:
allOf:
- $ref: '#/components/schemas/objectId'
- description: Pickup or Drop off type ID
name:
type: string
description: Pickup or Drop off method
example: Sheduled
gtfs_code:
type: string
description: GTFS code equivalent to this type
description:
type: string
description: Method explanation or example
example: The vehicle performs a regularly sheduled stop
pickup:
type: boolean
description: ¿Is this type valid for pick-ups?
example: true
dropoff:
type: boolean
description: ¿Is this type valid for drop-offs?
example: true
PathPoint:
type: object
properties:
point:
allOf:
- $ref: '#/components/schemas/objectId'
- description: Point ID
location:
allOf:
- $ref: '#/components/schemas/LatLong'
- description: Point Location
sequence:
type: integer
format: int32
description: Sequence order of the point in the path
example: 14
# TODO Feature: Stop Services
# stop_id, services[]{line, itinerary}
Station:
type: object
properties:
id:
allOf:
- $ref: '#/components/schemas/objectId'
- description: Station ID
eid:
type: string
description: External ID (defined by the provider)
example: 41
name:
type: string
description: Station name
example: Málaga-María Zambrano
address:
type: string
description: Station address (if it has one)
example: Paseo del Parque 21
location:
$ref: '#/components/schemas/LatLong'
Town:
type: object
properties:
id:
allOf:
- $ref: '#/components/schemas/objectId'
- description: Town ID
name:
type: string
description: Town name
example: Álora
TownArea:
type: object
properties:
id:
allOf:
- $ref: '#/components/schemas/objectId'
- description: Town area ID
name:
type: string
description: Area name
example: Airport
town:
allOf:
- $ref: '#/components/schemas/objectId'
- description: Parent Town ID
RouteAgencies:
type: object
properties:
id:
allOf:
- $ref: '#/components/schemas/objectId'
- description: Relation ID
route:
allOf: