-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
39 lines (39 loc) · 1.66 KB
/
config.json
File metadata and controls
39 lines (39 loc) · 1.66 KB
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
{
"agencies": [
{
"id": "oct",
"name": "OC Transpo (BETA)",
"rt": true,
"st": true,
"timezone": "America/New_York",
"files": [
{
"id":"js-pos",
"url":"https://tzbqxdgzaysschsbcxyf.supabase.co/functions/v1/export?table=oc_pos"
},
{
"id":"js-updates",
"url":"https://tzbqxdgzaysschsbcxyf.supabase.co/functions/v1/export?table=oc_updates"
}
],
"db": {
"stop_times": "oc_stop_times",
"trips": "oc_trips",
"stops": "oc_stops",
"routes": "oc_routes",
"shapes": "oc_shapes",
"calendar": "oc_calendar",
"calendar_dates": "oc_calendar_dates"
},
"table_headers": {
"stop_times": ["trip_id", "arrival_time", "stop_id", "stop_sequence"],
"trips": ["route_id","service_id", "trip_id", "trip_headsign", "direction_id", "block_id", "shape_id"],
"stops": ["stop_id", "stop_code", "stop_name", "stop_lat", "stop_lon"],
"routes": ["route_id", "route_short_name", "route_long_name", "route_color", "route_text_color"],
"shapes": ["shape_id", "shape_pt_lat", "shape_pt_lon", "shape_pt_sequence"],
"calendar": ["service_id", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday", "start_date", "end_date"],
"calendar_dates": ["service_id", "date", "exception_type"]
}
}
]
}