This repository has been archived by the owner on Jul 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathhttp-interface.yaml
333 lines (333 loc) · 7.95 KB
/
http-interface.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
swagger: '2.0'
info:
title: RDT infoplus-dvs
description: Actuele vertrektijden uit InfoPlus DVS
version: "2.0.0"
schemes:
- http
basePath: /v2
produces:
- application/json
paths:
/station/{station}:
get:
summary: Vertrektijden voor een station
parameters:
- name: station
in: path
description: Stationscode
required: true
type: string
- name: verbose
in: query
description: Verbose switch
required: false
type: boolean
- name: taal
in: query
description: Taalcode ('nl' of 'en')
required: false
type: string
enum:
- nl
- en
responses:
200:
description: Vertrektijden
schema:
$ref: '#/definitions/VertrekLijst'
default:
description: Onverwachte fout
schema:
$ref: '#/definitions/Error'
/trein/{trein}/{datum}:
get:
summary: Ritdetails voor trein op ritdatum
parameters:
- name: trein
in: path
description: ID voor trein (meestal treinnummer)
required: true
type: string
- name: datum
in: path
description: Dienstregelingsdatum in YYYY-MM-DD formaat of de string 'vandaag'
required: true
type: string
- name: verbose
in: query
description: Verbose switch
required: false
type: boolean
- name: taal
in: query
description: Taalcode ('nl' of 'en')
required: false
type: string
enum:
- nl
- en
responses:
200:
description: Ritdetails
schema:
$ref: '#/definitions/VertrekDetails'
default:
description: Onverwachte fout
schema:
$ref: '#/definitions/Error'
/trein/{trein}/{datum}/{station}:
get:
summary: Vertrekdetails voor trein op ritdatum
parameters:
- name: trein
in: path
description: ID voor trein (meestal treinnummer)
required: true
type: string
- name: datum
in: path
description: Dienstregelingsdatum in YYYY-MM-DD formaat of de string 'vandaag'
required: true
type: string
- name: station
in: path
description: Stationscode
required: true
type: string
- name: verbose
in: query
description: Verbose switch
required: false
type: boolean
- name: taal
in: query
description: Taalcode ('nl' of 'en')
required: false
type: string
enum:
- nl
- en
responses:
200:
description: Ritdetails
schema:
$ref: '#/definitions/VertrekDetails'
default:
description: Onverwachte fout
schema:
$ref: '#/definitions/Error'
/status:
get:
summary: Systeemstatus
responses:
200:
description: Statusinformatie
schema:
$ref: '#/definitions/Status'
definitions:
VertrekLijst:
type: object
properties:
result:
type: string
system_status:
$ref: '#/definitions/SystemStatus'
vertrektijden:
type: array
items:
$ref: '#/definitions/Vertrek'
Vertrek:
type: object
required:
- status
- bestemming
- via
- treinNr
- id
- soort
- soortAfk
- vertraging
- opmerkingen
- tips
- opgeheven
- spoor
- vertrek
- sprWijziging
- vervoerder
- vleugels
properties:
status:
type: number
description: Status van het vertrek
enum:
- 0
- 2
- 5
treinNr:
type: string
description: Treinnummer
vertrek:
type: string
format: dateTime
description: Geplande vertrektijd
via:
type: string
description: Via-stations
bestemming:
type: string
description: Actuele eindbestemming
bestemmingOrigineel:
type: string
description: Originele eindbestemming (bij gewijzigde eindbestemming)
spoor:
type: string
description: Vertrekspoor
soort:
type: string
description: Lange omschrijving treinsoort
example: Intercity
soortAfk:
type: string
description: Verkorte omschrijving treinsoort
example: IC
vervoerder:
type: string
description: Vervoerder voor de rit
vertraging:
type: number
description: Vertraging in minuten
vleugels:
type: array
items:
$ref: '#/definitions/TreinVleugel'
description: Treinvleugels
opgeheven:
type: boolean
description: Trein is opgeheven indien true
sprWijziging:
type: boolean
description: Vertrekspoor gewijzigd t.o.v. planning indien true
opmerkingen:
type: array
items:
type: string
description: Opmerkingen/waarschuwingen voor deze trein
tips:
type: array
items:
type: string
description: Reistips voor deze trein
id:
type: string
description: Identifier voor deze trein op deze dienstregelingsdatum
TreinVleugel:
type: object
required:
- bestemming
properties:
bestemming:
type: string
description: Bestemming van deze treinvleugel
mat:
type: array
items:
type: array
items:
type: string
stopstations:
type: array
items:
$ref: '#/definitions/StopStation'
StopStation:
type: object
description: Stopstation langs route trein
required:
- code
- naam
properties:
code:
type: string
description: Stationscode
naam:
type: string
description: Stationsnaam
aankomst:
type: string
format: dateTime
description: Geplande aankomsttijd
vertrek:
type: string
format: dateTime
description: Geplande vertrektijd
aankomstspoor:
type: string
description: Aankomstspoor
vertrekspoor:
type: string
description: Vertrekspoor
sprWijziging:
type: boolean
description: Bij een spoorwijziging (vertrek of aankomst) true
vertragingAankomst:
type: number
description: Aankomstvertraging in minuten
vertragingVertrek:
type: number
description: Vertrekvertraging in minuten
VertrekDetails:
type: object
properties:
source:
type: string
description: Bron voor data
enum:
- dvs
- serviceinfo
system_status:
$ref: '#/definitions/SystemStatus'
result:
$ref: '#/definitions/Result'
trein:
$ref: '#/definitions/Vertrek'
Status:
type: object
properties:
result:
$ref: '#/definitions/Result'
data:
type: object
properties:
status:
$ref: '#/definitions/SystemStatus'
downsince:
type: string
format: dateTime
description: Tijd waarop downtime begon
recovering_since:
type: string
format: dateTime
description: Tijd waarop recovery begon
Result:
description: Resultaat
type: string
enum:
- OK
- ERR
SystemStatus:
description: Systeemstatus
type: string
enum:
- UP
- DOWN
- RECOVERING
- UNKNOWN
Error:
type: object
properties:
status:
type: string
system_status:
$ref: '#/definitions/SystemStatus'
result:
$ref: '#/definitions/Result'