-
Notifications
You must be signed in to change notification settings - Fork 34
/
dwbp-api-example.html
421 lines (393 loc) · 13.5 KB
/
dwbp-api-example.html
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
<!DOCTYPE html>
<html prefix="dcat: http://www.w3.org/ns/dcat#
dqv: http://www.w3.org/ns/dqv#dct: http://purl.org/dc/terms/" lang="en">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type">
<title>DWBP - Example API Documentation</title>
<meta content="width=device-width,initial-scale=1" name="viewport">
<style type="text/css">
.container {
font-family: sans-serif;
max-width: 968px;
margin: 0 auto;
}
.human-readable-example {
background-color: transparent;
border-collapse: collapse;
border-spacing: 0px;
color: #333;
width: 100%;
}
.human-readable-example td {
padding: 6px 3px 6px 3px;
letter-spacing: all;
}
.human-readable-example tr:first-child td:first-child {
width: 25%;
}
.human-readable-example tr:nth-child(even) {
background-color: #F7F7F7;
}
.human-readable-example tr:nth-child(odd) {
background-color: #FFFFFF;
}
div.example {
padding: 0.5em;
border-left: 0.5em solid #E0CB52;
border-color: #E0CB52;
background: none repeat scroll 0% 0% #FCFAEE;
}
a {
color: #00C;
text-decoration: none;
}
a[href]:hover {
background: none repeat scroll 0% 0% #FFA;
}
h2 {
font-size: 18px;
}
h3 {
font-size: 16px;
}
section pre {
background: #EAEAEA;
line-height: 16px;
padding: 6px;
border: 1px solid #DDD;
}
section code {
font-size: 14px;
}
</style>
</head>
<body>
<div class="container">
<h1>DWBP API Documentation</h1>
<!-- <section id="abstract">
<p>This page show the example of an API documentation. <a href="http://w3.org/TR/dwbp/"><abbr title="Data on the Web Best Practices">DWBP document</abbr></a>.</p>
</section> -->
<section>
<p>API URL: <code>http://data.mycity.example.com/transport/api/</code></p>
<h2>List all bus routes</h2>
<code>GET http://data.mycity.example.com/transport/api/bus/routes</code>
<!--<code>GET /bus/routes</code> -->
<!--<h3>Parameters</h3>
<table class="human-readable-example">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Optional</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>transport-agency</td>
<td>string</td>
<td>optional</td>
<td>If provided, retrieves data only for the given transport agency</td>
</tr>
<tr>
<td>full-details</td>
<td>boolean</td>
<td>optional</td>
<td>If set to true, all details for each route is returned. Default is false</td>
</tr>
</tbody>
</table>
<h3>Example</h3>
<!--<code>http://data.mycity.example.com/transport/api/bus/routes?transport-agency=DTA&full-details=false</code>-->
<!--<code>GET http://data.mycity.example.com/transport/api/bus/routes</code>-->
<h3>Response</h3>
<pre>
{
"routes":[
{"id":"1", "uri": "http://data.mycity.example.com/transport/bus/routes/1"},
{"id":"3", "uri": "http://data.mycity.example.com/transport/bus/routes/3"},
{"id":"5", "uri": "http://data.mycity.example.com/transport/bus/routes/5"},
{"id":"8", "uri": "http://data.mycity.example.com/transport/bus/routes/8"},
{"id":"10", "uri": "http://data.mycity.example.com/transport/bus/routes/10"},
{"id":"12a", "uri": "http://data.mycity.example.com/transport/bus/routes/12"}
]
}
<!--
{
"results": {"transport-agency": "http://data.mycity.example.com/transport-agency/DTA",
"routes":[
{"id":"1", "uri": "http://data.mycity.example.com/transport/road/bus/route/id/1"},
{"id":"3", "uri": "http://data.mycity.example.com/transport/road/bus/route/id/3"},
{"id":"5", "uri": "http://data.mycity.example.com/transport/road/bus/route/id/5"},
{"id":"8", "uri": "http://data.mycity.example.com/transport/road/bus/route/id/8"},
{"id":"10", "uri": "http://data.mycity.example.com/transport/road/bus/route/id/10"},
{"id":"12a", "uri": "http://data.mycity.example.com/transport/road/bus/route/id/12a"}
]
}
}-->
</pre>
</section>
<section>
<h2>List all bus stops</h2>
<code>GET http://data.mycity.example.com/transport/api/bus/stops</code>
<!--<code>GET /bus/stops</code> -->
<!-- <h3>Parameters</h3>
<table class="human-readable-example">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Optional</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<!--<tr>
<td>transport-agency</td>
<td>string</td>
<td>optional</td>
<td>If provided, retrieves data only for the given transport agency</td>
</tr>
<tr>
<td>route </td>
<td>string</td>
<td>optional</td>
<td>If provided, retrieves data only for the given route</td>
</tr>
<tr>
<td>full-details</td>
<td>boolean</td>
<td>optional</td>
<td>If set to true, all details for each stop is returned. Default is false</td>
</tr>
</tbody>
</table>
<h3>Example</h3>
<!--<code>http://data.mycity.example.com/transport/api/bus/stops/route=5&full-details=true</code>
<code>http://data.mycity.example.com/transport/api/bus/stops/route/id/5</code> -->
<h3>Response using fields defined in <a href="./dwbp-example.html">dwbp-example.html</a></li></h3>
<!--<p>Three different ways to describe stops:</p>
<ul>
<li>using simple fields</li>
<li>using fields defined in <a href="./dwbp-example.html">dwbp-example.html</a></li>
<li>using geojson</li>
</ul> -->
<pre>{
<!--"results": {"route": "http://data.mycity.example.com/transport/bus/route/id/5", -->
"stops":[
{"stop_id":"345",
"stop_name": "Castle Avenue, Sunset Drive",
"stop_desc": "Castle Avenue, Sunset Drive",
"stop_lat": "-3.731862",
"stop_long": "-38.526670",
"zone_id": "x20",
"stop_url": "http://data.mycity.example.com/transport/bus/stops/345"
},
{"stop_id":"483",
"stop_name": "Main Street, Lily Park",
"stop_desc": "Main Street, Lily Park",
"stop_lat": "-3.731541",
"stop_long": "-38.535157",
"zone_id": "x20",
"stop_url": "http://data.mycity.example.com/transport/bus/stops/483"
},
{"stop_id":"541",
"stop_name": "West Avenue, Beech Road",
"stop_desc": "West Avenue, Beech Road",
"stop_lat":"-3.734957"
"stop_long":"-38.514354",
"zone_id": "x22",
"stop_url": "http://data.mycity.example.com/transport/bus/stops/541"
}
]
}
}</pre>
<!--<pre>{
"results": {"transport-agency": "http://data.mycity.example.com/transport-agency/DTA",
"route": "http://data.mycity.example.com/transport/road/bus/route/id/5",
"stops":[
{"id":"345",
"uri": "http://data.mycity.example.com/transport/road/bus/stop/id/345",
"name": "Castle Avenue, Sunset Drive",
"description": "Castle Avenue, Sunset Drive",
"latitude": "-3.731862",
"longitude": "-38.526670",
"zone_id": "x20"
},
{"stop_id":"483",
"stop_uri": "http://data.mycity.example.com/transport/road/bus/stop/id/483",
"stop_name": "Main Street, Lily Park",
"stop_desc": "Main Street, Lily Park",
"stop_lat": "-3.731541",
"stop_long": "-38.535157",
"zone_id": "x20"
},
{"id":"541",
"uri": "http://data.mycity.example.com/transport/road/bus/stop/id/541",
"name": "West Avenue, Beech Road",
"desc": "West Avenue, Beech Road",
"location": { "type": "Point",
"coordinates": [-38.514354, -3.734957] },
"zone_id": "x22"
}
]
}
}</pre> -->
</section>
<section>
<h2>List all bus stops along a single route</h2>
<code>GET http://data.mycity.example.com/transport/api/bus/stops/routes/{id}</code>
<!--<code>GET /bus/stops</code> -->
<!-- <h3>Parameters</h3>
<table class="human-readable-example">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Optional</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<!--<tr>
<td>transport-agency</td>
<td>string</td>
<td>optional</td>
<td>If provided, retrieves data only for the given transport agency</td>
</tr>
<tr>
<td>route </td>
<td>string</td>
<td>optional</td>
<td>If provided, retrieves data only for the given route</td>
</tr>
<tr>
<td>full-details</td>
<td>boolean</td>
<td>optional</td>
<td>If set to true, all details for each stop is returned. Default is false</td>
</tr>
</tbody>
</table>
<h3>Example</h3>
<!--<code>http://data.mycity.example.com/transport/api/bus/stops/route=5&full-details=true</code>
<code>http://data.mycity.example.com/transport/api/bus/stops/route/id/5</code>
<h3>Response using fields defined in <a href="./dwbp-example.html">dwbp-example.html</a></li></h3>
<!--<p>Three different ways to describe stops:</p>
<ul>
<li>using simple fields</li>
<li>using fields defined in <a href="./dwbp-example.html">dwbp-example.html</a></li>
<li>using geojson</li>
</ul> -->
<h3>Response </h3>
<pre>{
<"results": {"route": "http://data.mycity.example.com/transport/bus/stops/routes/5",
"stops":[
{"stop_id":"345",
"stop_name": "Castle Avenue, Sunset Drive",
"stop_desc": "Castle Avenue, Sunset Drive",
"stop_lat": "-3.731862",
"stop_long": "-38.526670",
"zone_id": "x20",
"stop_url": "http://data.mycity.example.com/transport/bus/stops/345"
},
{"stop_id":"483",
"stop_name": "Main Street, Lily Park",
"stop_desc": "Main Street, Lily Park",
"stop_lat": "-3.731541",
"stop_long": "-38.535157",
"zone_id": "x20",
"stop_url": "http://data.mycity.example.com/transport/bus/stops/483"
},
{"stop_id":"541",
"stop_name": "West Avenue, Beech Road",
"stop_desc": "West Avenue, Beech Road",
"stop_lat":"-3.734957"
"stop_long":"-38.514354",
"zone_id": "x22",
"stop_url": "http://data.mycity.example.com/transport/bus/stops/541"
}
]
}
}</pre>
<section>
<h2>Get real-time info for bus stop</h2>
<code>GET http://data.mycity.example.com/transport/api/bus/stops/realtime/{stopid}</code>
<!--<h3>Parameters</h3>
<table class="human-readable-example">
<tr>
<th>Name</th>
<th>Type</th>
<th>Optional</th>
<th>Description</th>
</tr>
<tr>
<td>full-details</td>
<td>boolean</td>
<td>optional</td>
<td>If set to true, all details for each stop is returned. Default is false </td>
</tr>
<tr>
<td>route </td>
<td>string</td>
<td>optional</td>
<td>If provided, retrieves data only for the given route</td>
</tr>
</table>
<!-- stop - string - mandatory, retrieves real-time information for given stop.
full-details - boolean - optional, if set to true, all details for each stop is return. Default is false
transport agency - string - optional, if provided retrieves data only for given transport agency.
route - string - optional, if provided retrieves data only for given route. -->
<h3>Example</h3>
<code>http://data.mycity.example.com/transport/api/bus/stops/realtime/345</code>
<h3>Response</h3>
<pre>{
"results": {"id":"345",
"uri":"http://data.mycity.example.com/transport/bus/stops/345",
"timestamp":"2016-05-03T13:54:16Z",
"realtime":[
{"route": "http://data.mycity.example.com/transport/bus/stops/routes/5",
"duetime":"2016-05-03T14:00Z"
},
{"route": "http://data.mycity.example.com/transport/bus/stops/routes/8",
"duetime":"2016-05-03T14:03Z"
},
{"route": "http://data.mycity.example.com/transport/bus/stops/routes/12",
"duetime":"2016-05-03T14:05Z"
},
{"route": "http://data.mycity.example.com/transport/bus/stops/routes/9",
"duetime":"2016-05-03T14:06Z"
}
]
}
}
</pre>
<!--<pre>{
"results": {"id":"345",
"uri":"http://data.mycity.example.com/transport/road/bus/stop/id/345",
"timestamp":"2016-05-03T13:54:16Z",
"realtime":[
{"transport-agency": "http://data.mycity.example.com/transport-agency/DTA",
"route": "http://data.mycity.example.com/transport/road/bus/route/id/5",
"duetime":"2016-05-03T14:00Z"
},
{"transport-agency": "http://data.mycity.example.com/transport-agency/ABC",
"route": "http://data.mycity.example.com/transport/road/bus/route/id/8",
"duetime":"2016-05-03T14:03Z"
},
{"transport-agency": "http://data.mycity.example.com/transport-agency/ABC",
"route": "http://data.mycity.example.com/transport/road/bus/route/id/12a",
"duetime":"2016-05-03T14:05Z"
},
{"transport-agency": "http://data.mycity.example.com/transport-agency/DTA",
"route": "http://data.mycity.example.com/transport/road/bus/route/id/5",
"duetime":"2016-05-03T14:06Z"
}
]
}
}
</pre> -->
</section>
</div>
</body>
</html>