blob: 09c710bb1c6a42b062b32bba952750d9fe5e776c (
plain)
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
|
using System.Text.Json.Serialization;
namespace Enmarcha.Sources.OpenTripPlannerGql.Queries;
public class StopScheduleContent : IGraphRequest<StopScheduleContent.Args>
{
public record Args(string Id, string Date);
public static string Query(Args args)
{
return $@"
query Query {{
stop(id:""{args.Id}"") {{
code
name
lat
lon
stoptimesForServiceDate(date:""{args.Date}"") {{
pattern {{
id
headsign
directionId
route {{
gtfsId
shortName
color
textColor
}}
}}
stoptimes {{
scheduledDeparture
pickupType
dropoffType
trip {{
gtfsId
tripHeadsign
departureStoptime {{
stop {{
gtfsId
name
}}
}}
arrivalStoptime {{
stop {{
gtfsId
name
}}
}}
route {{
agency {{
name
}}
}}
}}
}}
}}
}}
}}
";
}
}
public class StopScheduleOtpResponse : AbstractGraphResponse
{
[JsonPropertyName("stop")]
public StopItem? Stop { get; set; }
public class StopItem
{
[JsonPropertyName("code")]
public required string Code { get; set; }
[JsonPropertyName("name")]
public required string Name { get; set; }
[JsonPropertyName("lat")]
public double Lat { get; set; }
[JsonPropertyName("lon")]
public double Lon { get; set; }
[JsonPropertyName("stoptimesForServiceDate")]
public List<PatternStoptimes> StoptimesForServiceDate { get; set; } = [];
}
public class PatternStoptimes
{
[JsonPropertyName("pattern")]
public required PatternRef Pattern { get; set; }
[JsonPropertyName("stoptimes")]
public List<Stoptime> Stoptimes { get; set; } = [];
}
public class PatternRef
{
[JsonPropertyName("id")]
public required string Id { get; set; }
[JsonPropertyName("headsign")]
public string? Headsign { get; set; }
[JsonPropertyName("directionId")]
public int DirectionId { get; set; }
[JsonPropertyName("route")]
public required RouteRef Route { get; set; }
}
public class RouteRef
{
[JsonPropertyName("gtfsId")]
public required string GtfsId { get; set; }
[JsonPropertyName("shortName")]
public string? ShortName { get; set; }
[JsonPropertyName("color")]
public string? Color { get; set; }
[JsonPropertyName("textColor")]
public string? TextColor { get; set; }
}
public class Stoptime
{
[JsonPropertyName("scheduledDeparture")]
public int ScheduledDepartureSeconds { get; set; }
[JsonPropertyName("pickupType")]
public string? PickupType { get; set; }
[JsonPropertyName("dropoffType")]
public string? DropoffType { get; set; }
[JsonPropertyName("trip")]
public TripRef? Trip { get; set; }
}
public class TripRef
{
[JsonPropertyName("gtfsId")]
public required string GtfsId { get; set; }
[JsonPropertyName("tripHeadsign")]
public string? TripHeadsign { get; set; }
[JsonPropertyName("departureStoptime")]
public TerminusStoptime? DepartureStoptime { get; set; }
[JsonPropertyName("arrivalStoptime")]
public TerminusStoptime? ArrivalStoptime { get; set; }
[JsonPropertyName("route")]
public TripRouteRef? Route { get; set; }
}
public class TerminusStoptime
{
[JsonPropertyName("stop")]
public StopRef? Stop { get; set; }
}
public class StopRef
{
[JsonPropertyName("gtfsId")]
public string? GtfsId { get; set; }
[JsonPropertyName("name")]
public required string Name { get; set; }
}
public class TripRouteRef
{
[JsonPropertyName("agency")]
public AgencyRef? Agency { get; set; }
}
public class AgencyRef
{
[JsonPropertyName("name")]
public required string Name { get; set; }
}
}
|