-
Notifications
You must be signed in to change notification settings - Fork 1
/
schema.graphql
785 lines (724 loc) · 15.2 KB
/
schema.graphql
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
# This file was generated based on ".graphqlconfig". Do not edit manually.
schema {
query: Query
mutation: Mutation
}
"Any object that describes something with a position implements this interface."
interface Position {
lat: Float
lng: Float
}
union JourneyEventType =
JourneyCancellationEvent
| JourneyEvent
| JourneyStopEvent
| JourneyTlpEvent
| PlannedStopEvent
type Alert {
affectedId: String!
bulletinId: String!
category: AlertCategory!
description: String!
distribution: AlertDistribution!
endDateTime: DateTime!
id: String!
impact: AlertImpact!
lastModifiedDateTime: DateTime!
level: AlertLevel!
startDateTime: DateTime!
title: String!
url: String
}
type Cancellation {
cancellationEffect: CancellationEffect!
cancellationType: CancellationType!
category: AlertCategory!
departureDate: Date!
description: String!
direction: Direction!
id: Int!
isCancelled: Boolean!
journeyStartTime: Time!
lastModifiedDateTime: DateTime!
routeId: String!
subCategory: CancellationSubcategory!
title: String!
}
type Departure {
_normalDayType: String
alerts: [Alert!]!
cancellations: [Cancellation!]!
dayType: String!
departureDate: Date!
departureEvent: JourneyStopEvent
departureId: Int!
departureTime: Time!
direction: Direction!
equipmentColor: String
equipmentIsRequired: Boolean
equipmentType: String
extraDeparture: String!
id: ID!
index: Int
isCancelled: Boolean!
isNextDay: Boolean!
isOrigin: Boolean
isTimingStop: Boolean!
journey: DepartureJourney
mode: String!
observedArrivalTime: ObservedArrival
observedDepartureTime: ObservedDeparture
operatingUnit: String
operatorId: String
originDepartureTime: PlannedDeparture
plannedArrivalTime: PlannedArrival!
plannedDepartureTime: PlannedDeparture!
recoveryTime: Int
routeId: String!
stop: Stop!
stopId: String!
terminalTime: Int
trainNumber: String
}
type DepartureJourney {
_numInstance: Int
alerts: [Alert!]!
cancellations: [Cancellation!]!
departureDate: Date!
departureTime: Time!
direction: Direction
id: ID!
isCancelled: Boolean!
journeyType: String!
mode: String
originStopId: String
routeId: String
type: String!
uniqueVehicleId: VehicleId
}
type DriverEvent {
eventType: String!
id: ID!
journeyType: String!
lat: Float
lng: Float
loc: String
mode: String
odo: Float
operatorId: String
receivedAt: DateTime
recordedAt: DateTime!
recordedAtUnix: Int!
recordedTime: Time!
uniqueVehicleId: VehicleId
vehicleId: String
}
type Equipment {
_matchScore: Float
age: Int
emissionClass: String
emissionDesc: String
exteriorColor: String
id: ID!
inService: Boolean
operatorId: String!
operatorName: String
registryNr: String
type: String
vehicleId: String!
}
type ExceptionDay {
dayType: String!
description: String
effectiveDayTypes: [String!]!
endTime: Time
exceptionDate: Date!
exclusive: Boolean!
id: ID!
modeScope: String!
scope: String!
scopedDayType: String!
startTime: Time
}
type Feedback {
email: String!
msgTs: String!
text: String!
}
type File {
encoding: String!
filename: String!
mimetype: String!
}
type Journey {
alerts: [Alert!]!
cancellations: [Cancellation!]!
departure: Departure
departureDate: Date!
departureTime: Time
direction: Direction
equipment: Equipment
events: [JourneyEventType!]!
headsign: String
id: ID!
isCancelled: Boolean!
journeyDurationMinutes: Int
journeyLength: Int
journeyType: String!
mode: String
name: String
operatorId: String
originStopId: String
routeDepartures: [Departure!]
routeId: String
uniqueVehicleId: VehicleId
vehicleId: String
vehiclePositions: [VehiclePosition!]!
}
type JourneyCancellationEvent {
_sort: Int
cancellationEffect: CancellationEffect!
cancellationType: CancellationType!
category: AlertCategory!
description: String!
id: ID!
isCancelled: Boolean!
plannedDate: Date
plannedTime: Time
recordedAt: DateTime!
recordedAtUnix: Int!
recordedTime: Time!
subCategory: CancellationSubcategory!
title: String!
type: String!
}
type JourneyEvent {
_isVirtual: Boolean
_sort: Int
id: ID!
lat: Float
lng: Float
loc: String
mode: String
odo: Float
receivedAt: DateTime!
recordedAt: DateTime!
recordedAtUnix: Int!
recordedTime: Time!
stopId: String
type: String!
}
type JourneyStopEvent {
_isVirtual: Boolean
_sort: Int
departureId: Int
doorsOpened: Boolean
id: ID!
index: Int!
isNextDay: Boolean
isOrigin: Boolean
isTimingStop: Boolean!
lat: Float
lng: Float
loc: String
mode: String
nextStopId: String!
odo: Float
plannedDate: Date
plannedDateTime: DateTime
plannedTime: Time
plannedTimeDifference: Int
plannedUnix: Int
receivedAt: DateTime!
recordedAt: DateTime!
recordedAtUnix: Int!
recordedTime: Time!
stop: Stop
stopId: String
stopped: Boolean
type: String!
unplannedStop: Boolean!
}
type JourneyTlpEvent {
_sort: Int
attemptSeq: Int
decision: TlpDecision
frequency: Int
id: ID!
junctionId: Int
lat: Float
lineConfigId: Int
lng: Float
loc: String
mode: String
nextStopId: String
odo: Float
pointConfigId: Int
priorityLevel: TlpPriorityLevel
protocol: String
reason: TlpReason
receivedAt: DateTime!
recordedAt: DateTime!
recordedAtUnix: Int!
recordedTime: Time!
requestId: Int
requestType: TlpRequestType
signalGroupId: Int
signalGroupNbr: Int
type: String!
}
type Mutation {
sendFeedback(email: String!, text: String!, url: String!): Feedback!
uploadFeedbackImage(file: Upload!, msgTs: String): File!
}
type ObservedArrival {
arrivalDate: Date!
arrivalDateTime: DateTime!
arrivalTime: Time!
arrivalTimeDifference: Int!
eventType: String
id: ID!
loc: String
}
type ObservedDeparture {
departureDate: Date!
departureDateTime: DateTime!
departureTime: Time!
departureTimeDifference: Int!
eventType: String
id: ID!
loc: String
}
type PlannedArrival {
arrivalDate: Date!
arrivalDateTime: DateTime!
arrivalTime: Time!
id: ID!
isNextDay: Boolean
}
type PlannedDeparture {
departureDate: Date!
departureDateTime: DateTime!
departureTime: Time!
id: ID!
isNextDay: Boolean
}
type PlannedStopEvent {
_sort: Int
departureId: Int
id: ID!
index: Int!
isNextDay: Boolean
isOrigin: Boolean
isTimingStop: Boolean!
plannedDate: Date
plannedDateTime: DateTime
plannedTime: Time
plannedUnix: Int
stop: Stop
stopId: String
type: String!
}
type Query {
alerts(alertSearch: AlertSearchInput, language: String!, time: String): [Alert!]!
cancellations(cancellationSearch: CancellationSearchInput, date: Date): [Cancellation!]!
departures(
date: Date!
filter: DepartureFilterInput
stopId: String
terminalId: String
): [Departure]!
driverEvents(date: Date!, uniqueVehicleId: VehicleId!): [DriverEvent]!
equipment(date: Date, filter: EquipmentFilterInput): [Equipment]!
exceptionDays(year: String!): [ExceptionDay]!
journey(
departureDate: Date!
departureTime: Time!
direction: Direction!
routeId: String!
uniqueVehicleId: VehicleId
unsignedEvents: Boolean
): Journey
journeys(departureDate: Date!, direction: Direction!, routeId: String!): [Journey]!
journeysByBbox(
bbox: PreciseBBox!
date: Date!
filters: AreaEventsFilterInput
maxTime: DateTime!
minTime: DateTime!
unsignedEvents: Boolean
): [Journey]!
route(date: Date!, direction: Direction!, routeId: String!): Route
routeDepartures(
date: Date!
direction: Direction!
routeId: String!
stopId: String!
): [Departure]!
routeGeometry(date: Date!, direction: Direction!, routeId: String!): RouteGeometry
routeSegments(date: Date!, direction: Direction!, routeId: String!): [RouteSegment]!
routes(date: Date, filter: RouteFilterInput): [Route]!
stop(date: Date!, stopId: String!): Stop
stops(date: Date, filter: StopFilterInput): [Stop]!
terminal(date: Date, terminalId: String): Terminal
terminals(date: Date): [Terminal]!
uiMessage: UIMessage!
unsignedVehicleEvents(date: Date!, uniqueVehicleId: VehicleId!): [VehiclePosition]!
uploads: [File]
vehicleJourneys(
date: Date!
uniqueVehicleId: VehicleId!
unsignedEvents: Boolean
): [VehicleJourney]!
weeklyDepartures(
date: Date!
direction: Direction!
lastStopArrival: Boolean
routeId: String!
stopId: String!
): [Departure]!
}
type Route {
_matchScore: Float
alerts: [Alert!]!
cancellations: [Cancellation!]!
destination: String
destinationStopId: String
direction: Direction!
id: ID!
mode: String
name: String
origin: String
originStopId: String!
routeDurationMinutes: Int
routeId: String!
routeLength: Int
}
type RouteGeometry {
coordinates: [RouteGeometryPoint!]!
id: ID!
mode: String
}
type RouteGeometryPoint implements Position {
lat: Float!
lng: Float!
}
type RouteSegment implements Position {
alerts: [Alert!]!
cancellations: [Cancellation!]!
destination: String!
destinationStopId: String
direction: Direction!
distanceFromPrevious: Int
distanceFromStart: Int
duration: Int
id: ID!
isTimingStop: Boolean!
lat: Float!
lng: Float!
modes: [String!]
name: String
originStopId: String
radius: Float
routeId: String!
shortId: String!
stopId: String!
stopIndex: Int!
}
type Stop implements Position {
_matchScore: Float
alerts: [Alert!]!
id: ID!
isTimingStop: Boolean!
lat: Float!
lng: Float!
modes: [String]!
name: String
radius: Float
routes: [StopRoute!]!
shortId: String!
stopId: String!
stopIndex: Int
}
type StopRoute {
destination: String
direction: Direction!
id: ID!
isTimingStop: Boolean!
mode: String
name: String
origin: String
originStopId: String
routeId: String!
}
type Terminal implements Position {
id: ID!
lat: Float!
lng: Float!
modes: [String!]
name: String!
stopIds: [String!]
stops: [Stop!]
}
type UIMessage {
date: String
message: String
}
type VehicleJourney {
alerts: [Alert!]!
cancellations: [Cancellation!]!
departureDate: Date!
departureTime: Time!
direction: Direction
headsign: String
id: ID!
isCancelled: Boolean!
journeyType: String!
loc: String
mode: String
operatorId: String
recordedAt: DateTime!
recordedAtUnix: Int!
recordedTime: Time!
routeId: String
timeDifference: Int!
uniqueVehicleId: VehicleId
vehicleId: String
}
type VehiclePosition implements Position {
_sort: Int
delay: Int
doorStatus: Boolean
heading: Int
id: ID!
journeyType: String!
lat: Float
lng: Float
loc: String
mode: String
nextStopId: String
odo: Float
operatorId: String
receivedAt: DateTime!
recordedAt: DateTime!
recordedAtUnix: Int!
recordedTime: Time!
stop: String
uniqueVehicleId: VehicleId
vehicleId: String
velocity: Float
}
enum AlertCategory {
ACCIDENT
ASSAULT
DISTURBANCE
EARLIER_DISRUPTION
HIDDEN
ITS_SYSTEM_ERROR
MEDICAL_INCIDENT
MISPARKED_VEHICLE
NO_DRIVER
NO_TRAFFIC_DISRUPTION
OTHER
OTHER_DRIVER_ERROR
POWER_FAILURE
PUBLIC_EVENT
ROAD_CLOSED
ROAD_MAINTENANCE
ROAD_TRENCH
SEIZURE
STAFF_DEFICIT
STATE_VISIT
STRIKE
SWITCH_FAILURE
TECHNICAL_FAILURE
TEST
TOO_MANY_PASSENGERS
TRACK_BLOCKED
TRACK_MAINTENANCE
TRAFFIC_ACCIDENT
TRAFFIC_JAM
VEHICLE_BREAKDOWN
VEHICLE_DEFICIT
VEHICLE_OFF_THE_ROAD
WEATHER
WEATHER_CONDITIONS
}
enum AlertDistribution {
ALL_ROUTES
ALL_STOPS
NETWORK
ROUTE
STOP
}
enum AlertImpact {
BICYCLE_STATION_OUT_OF_ORDER
BICYCLE_SYSTEM_OUT_OF_ORDER
CANCELLED
DELAYED
DEVIATING_SCHEDULE
DISRUPTION_ROUTE
IRREGULAR_DEPARTURES
IRREGULAR_DEPARTURES_MAX_15
IRREGULAR_DEPARTURES_MAX_30
NO_TRAFFIC_IMPACT
OTHER
POSSIBLE_DEVIATIONS
POSSIBLY_DELAYED
REDUCED_BICYCLE_PARK_CAPACITY
REDUCED_TRANSPORT
RETURNING_TO_NORMAL
UNKNOWN
VENDING_MACHINE_OUT_OF_ORDER
}
enum AlertLevel {
INFO
SEVERE
WARNING
}
enum CancellationEffect {
CANCEL_ENTIRE_DEPARTURE
CANCEL_STOPS_FROM_END
CANCEL_STOPS_FROM_MIDDLE
CANCEL_STOPS_FROM_START
}
enum CancellationSubcategory {
ASSAULT_ON_DRIVER
ASSAULT_ON_PASSENGER
ASSAULT_ON_VEHICLE
BREAK_MALFUNCTION
CONGESTION_CAUSED_BY_ACCIDENT
CONGESTION_CAUSED_BY_WEATHER
CONGESTION_REASON_UKNOWN
DEVICE_ERROR
DOOR_MALFUNCTION
DRIVER_ERROR
DRIVER_LATE
DRIVER_SEIZURE
ELECTRIC_MALFUNCTION
ENGINE_MALFUNCTION
FALSE_ALARM
FAULT_UNKNOWN
FLUID_LEAKAGE
HIDDEN
INSUFFICIENT_CAPASITY
INSUFFICIENT_INSTRUCTIONS_BY_AUTHORITY
INSUFFICIENT_INSTRUCTIONS_BY_OPERATOR
ITS_SYSTEM_NOT_INSTALLED
MISSPARKED_VEHICLE
ND_OPERATOR_PLANNING_ERROR
NO_VEHICLE_AVAILABLE
OPERATOR_DEVICE_ERROR
OPERATOR_PERSONNEL_ON_STRIKE
OPPOSITE_FAULT
OTHER_ASSAULT
OTHER_ITS_ERROR
OTHER_MALFUNCTION
OTHER_OPERATOR_REASON
OTHER_SEIZURE
OTHER_STRIKE
OUT_OF_FUEL
OWN_FAULT
PASSED_OUT_PASSENGER
PASSENGER_INJURED
PASSENGER_SEIZURE
ROAD_BLOCKED
SLIPPERY_TRACK
STAFF_SHORTAGE
STUCK_CAUSED_BY_SLIPPERY
UNDRIVEABLE_CONDITIONS
UNKNOWN_CAUSE
USER_ERROR
VEHICLE_OFF_THE_ROAD_BY_DRIVER_ERROR
VEHICLE_OFF_THE_ROAD_BY_OTHER_REASON
WRONG_INFORMATION_IN_DEVICE
}
enum CancellationType {
BLOCK_FIRST_DEPARTURE_LATE
CANCEL_DEPARTURE
DEPARTURED_AFTER_NEXT_JOURNEY
DETOUR
EARLY_DEPARTURE
EARLY_DEPARTURE_FROM_TIMING_POINT
LATE_DEPARTURE
SKIPPED_STOP_CALLS
TIS_ERROR
}
enum TlpDecision {
ACK
NAK
}
enum TlpPriorityLevel {
HIGH
NOREQUEST
NORMAL
}
enum TlpReason {
AHEAD
GLOBAL
LINE
PRIOEXEP
}
enum TlpRequestType {
ADVANCE
DOOR_CLOSE
DOOR_OPEN
NORMAL
}
enum TlpType {
TLA
TLR
}
input AlertSearchInput {
all: Boolean
allRoutes: Boolean
allStops: Boolean
network: Boolean
route: String
stop: String
}
input AreaEventsFilterInput {
direction: Direction
routeId: String
}
input CancellationSearchInput {
all: Boolean
departureTime: String
direction: Int
latestOnly: Boolean
routeId: String
}
input DepartureFilterInput {
direction: Direction
maxHour: Int
minHour: Int
routeId: String
}
input EquipmentFilterInput {
operatorId: String
search: String
vehicleId: String
}
input RouteFilterInput {
direction: Direction
routeId: String
search: String
}
input StopFilterInput {
search: String
}
"A Date string in YYYY-MM-DD format. The timezone is assumed to be Europe/Helsinki."
scalar Date
"The direction of a route. An integer of either 1 or 2."
scalar Direction
"A DateTime string in ISO 8601 format (YYYY-MM-DDTHH:mm:ssZ). Timezone will be converted to Europe/Helsinki."
scalar DateTime
"Time is seconds from 00:00:00 in format HH:mm:ss. The hours value can be more than 23. The timezone is assumed to be Europe/Helsinki"
scalar Time
"A string that uniquely identifies a vehicle. The format is [operator ID]/[vehicle ID]. The operator ID is padded to have a length of 4 characters."
scalar VehicleId
"A string that defines a bounding box. The coordinates should be in the format `minLng,maxLat,maxLng,minLat` which is compatible with what Leaflet's LatLngBounds.toBBoxString() returns. The precise bbox is not rounded."
scalar PreciseBBox
scalar Upload
"A string that defines a bounding box. The coordinates should be in the format `minLng,maxLat,maxLng,minLat` which is compatible with what Leaflet's LatLngBounds.toBBoxString() returns. Toe coordinates will be rounded, use PreciseBBox if this is not desired."
scalar BBox