From a709c80f38c27408abc84de349512d92c483727c Mon Sep 17 00:00:00 2001 From: thenatespack Date: Wed, 3 Dec 2025 15:07:36 -0700 Subject: [PATCH] version 2.0 | refactor changed structure of codebase. also include docker files for easy deployment --- .gitignore | 1 + Dockerfile | 49 + alerts.json | 4059 -- app.js | 22 - docker-compose.yaml | 45 + init-db.sql | 98 + package-lock.json | 1484 +- package.json | 22 +- public/index.html | 57 +- public/index.js | 388 + public/style.css | 63 + scripts/validateData.js | 0 server.js | 93 + src/dal/data/routes.json | 27 - src/dal/data/stations.json | 1494 - src/dal/data/vehicles.json | 68 - src/routes/vehicles.js | 48 - start.js | 12 - tools/gtfsData.js | 324 + tripUpdates.json | 69024 ----------------------------------- vehicles.json | 6689 ---- 21 files changed, 2532 insertions(+), 81535 deletions(-) create mode 100644 Dockerfile delete mode 100644 alerts.json delete mode 100644 app.js create mode 100644 docker-compose.yaml create mode 100644 init-db.sql create mode 100644 public/index.js create mode 100644 public/style.css delete mode 100644 scripts/validateData.js create mode 100644 server.js delete mode 100644 src/dal/data/routes.json delete mode 100644 src/dal/data/stations.json delete mode 100644 src/dal/data/vehicles.json delete mode 100644 src/routes/vehicles.js delete mode 100644 start.js create mode 100644 tools/gtfsData.js delete mode 100644 tripUpdates.json delete mode 100644 vehicles.json diff --git a/.gitignore b/.gitignore index 4381b19..5566a7b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /node_modules /traxer_api/.codeedit +.DS_Store diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..cab5bfc --- /dev/null +++ b/Dockerfile @@ -0,0 +1,49 @@ +# ---- Builder Stage ---- +# Use official Node.js 20 (Alpine) +FROM node:20-alpine AS builder + +# Install init system +RUN apk add --no-cache dumb-init + +# App dir +WORKDIR /app + +# Copy package files +COPY package*.json ./ + +# Install production deps +RUN npm ci --only=production && npm cache clean --force + +# ---- Final Stage ---- +FROM node:20-alpine + +LABEL maintainer="your-email@example.com" +LABEL org.opencontainers.image.source="https://github.com/yourname/uta-gtfs-mysql" + +# Install dumb-init + MySQL client (optional but common) +RUN apk add --no-cache dumb-init mysql-client + +# Create non-root user +RUN addgroup -g 1001 -S nodejs \ + && adduser -S utauser -u 1001 + +WORKDIR /app + +# Copy node_modules from builder +COPY --from=builder /app/node_modules ./node_modules + +# Copy app source +COPY . . + +RUN chown -R utauser:nodejs /app +USER utauser + +# Healthcheck – you may want to change port if needed +HEALTHCHECK --interval=30s --timeout=3s --start-period=60s --retries=3 \ + CMD wget -qO- http://localhost:3000/ || exit 1 + +EXPOSE 3000 + +ENTRYPOINT ["dumb-init", "--"] + +CMD ["node", "server.js"] diff --git a/alerts.json b/alerts.json deleted file mode 100644 index 0688d5c..0000000 --- a/alerts.json +++ /dev/null @@ -1,4059 +0,0 @@ -{ - "header": { - "gtfsRealtimeVersion": "2.0", - "incrementality": "FULL_DATASET", - "timestamp": "1763602899" - }, - "entity": [ - { - "id": "10442_2116", - "alert": { - "informedEntity": [ - { - "routeId": "2116" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "6000 S CONSTRUCTION CLOSURE", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "LEAVING THE ROY EOL:Head west on 5700 S Turn left onto 2200 WTurn right onto 6000 S Turn right onto 2700 WTurn right onto 5600 STurn right onto 3500 W back to regular route ", - "language": "en" - } - ] - } - } - }, - { - "id": "10443_32878", - "alert": { - "informedEntity": [ - { - "routeId": "32878" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Night Construction 07:00 PM-05:00 AM", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head northbound on State StTurn left onto 7500 STurn left onto 300 W/Jefferson St,Turn left onto 7720 S/Center StTurn right to enter into Midvale Center Station. ", - "language": "en" - } - ] - } - } - }, - { - "id": "10444_87708", - "alert": { - "informedEntity": [ - { - "routeId": "87708" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Stop 126530 on eastbound 200 S 100 E is temporarily closed due to construction", - "language": "en" - } - ] - } - } - }, - { - "id": "10445_2003", - "alert": { - "informedEntity": [ - { - "routeId": "2003" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Stop 126530 on eastbound 200 S 100 E is temporarily closed due to construction", - "language": "en" - } - ] - } - } - }, - { - "id": "10446_79372", - "alert": { - "informedEntity": [ - { - "routeId": "79372" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Stop 126530 on eastbound 200 S 100 E is temporarily closed due to construction", - "language": "en" - } - ] - } - } - }, - { - "id": "10447_27614", - "alert": { - "informedEntity": [ - { - "routeId": "27614" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Stop 126530 on eastbound 200 S 100 E is temporarily closed due to construction", - "language": "en" - } - ] - } - } - }, - { - "id": "10448_45418", - "alert": { - "informedEntity": [ - { - "routeId": "45418" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Stop 126530 on eastbound 200 S 100 E is temporarily closed due to construction", - "language": "en" - } - ] - } - } - }, - { - "id": "10481_25310", - "alert": { - "informedEntity": [ - { - "routeId": "25310" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "West Valley Central Construction ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Leaving West Valley Central StationContinue southbound on Market Street,Turn right onto 3835 S,Turn right onto 3200 W,Turn left onto 3650 S/Lancer Way back to route. ", - "language": "en" - } - ] - } - } - }, - { - "id": "10482_34504", - "alert": { - "informedEntity": [ - { - "routeId": "34504" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "West Valley Central Construction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Leaving West Valley Central Station,Continue southbound on Market Street,Turn right onto 3850 S,Turn right onto 3200 W,Continue northbound on 3200 W back to route. ", - "language": "en" - } - ] - } - } - }, - { - "id": "10489_76841", - "alert": { - "informedEntity": [ - { - "routeId": "76841" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "NOTICE: CONSTRUCTION ON HWY 36 - ALL DAY", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Bypass Lakepoint Junction in BOTH DIRECTIONS", - "language": "en" - } - ] - } - } - }, - { - "id": "10491_33284", - "alert": { - "informedEntity": [ - { - "routeId": "33284" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "West Valley Central Construction ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Leaving West Valley Central,Cross 3650 S/Lancer Way,Continue southbound on Market Street,Turn left onto 3785 S,Turn right onto Lee Maur St,Turn left onto 3800 S,Turn left onto 2700 W, Continue northbound back to route. ", - "language": "en" - } - ] - } - } - }, - { - "id": "10492_33284", - "alert": { - "informedEntity": [ - { - "routeId": "33284" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "West Valley Central Construction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Continue southbound onto 2700 W/Constitution Blvd,Turn right onto 3800 S,Turn right onto Lee Maur St,Turn left onto 3785 S, Turn right onto Market St,Cross 3650 S/Lancer Way to enter the station. ", - "language": "en" - } - ] - } - } - }, - { - "id": "10493_33284", - "alert": { - "informedEntity": [ - { - "routeId": "33284" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "West Valley Central Construction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Continue southbound onto 2700 W/Constitution Blvd,Turn right onto 3800 S,Turn right onto Lee Maur St,Turn left onto 3785 S, Turn right onto Market St,Cross 3650 S/Lancer Way to enter the station. ", - "language": "en" - } - ] - } - } - }, - { - "id": "10510_2328", - "alert": { - "informedEntity": [ - { - "routeId": "2328" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Water main break ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "From westbound 3300 SouthTurn left onto 900 EastTurn right onto 3900 SouthTurn right onto 700 EastTurn left onto 3300 South back to route (temp stop: 900 E/3300 S)", - "language": "en" - } - ] - } - } - }, - { - "id": "10519_2122", - "alert": { - "informedEntity": [ - { - "routeId": "2122" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "1200 W CLOSED", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head west on 1200 S St/12th St Merge onto I-15 N/I-84 WTake exit 346 toward 400 NTurn right onto Pioneer Rd/400 NTurn left onto 1200 W St back to regular route ", - "language": "en" - } - ] - } - } - }, - { - "id": "10520_2122", - "alert": { - "informedEntity": [ - { - "routeId": "2122" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "1200 W CLOSED", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head south on 1200 W St Turn right onto 400 N St/Pioneer RdTurn left to merge onto I-15 S/I-84 E southbound Take exit 344 for UT-39 toward 12th StHead east on 1200 S St/W 12th St back to regular route ", - "language": "en" - } - ] - } - } - }, - { - "id": "10521_48862", - "alert": { - "informedEntity": [ - { - "routeId": "48862" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporarily Closed - Stop 301505 - Westbound Park Lane Lagoon Dr", - "language": "en" - } - ] - } - } - }, - { - "id": "10526_87708", - "alert": { - "informedEntity": [ - { - "routeId": "87708" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Temporary Stop", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Eastbound Temporary Stops1000 E S Temple", - "language": "en" - } - ] - } - } - }, - { - "id": "10529_2332", - "alert": { - "informedEntity": [ - { - "routeId": "2332" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "BRT Lane Closed", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Please do not use the BRT LANE. The BRT signals are not working.Remain on 3500 South in both directions.Temporary Stop Locations:3600 W 3500 S - Eastbound stop #101622 3600 W 3500 S - Westbound stop #101629", - "language": "en" - } - ] - } - } - }, - { - "id": "10532_51572", - "alert": { - "informedEntity": [ - { - "routeId": "51572" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Electric Charger Construction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "West Valley Station EOLPlease use Bay E and Bay F", - "language": "en" - } - ] - } - } - }, - { - "id": "10538_27613", - "alert": { - "informedEntity": [ - { - "routeId": "27613" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Temp Closed Stop", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporarily Closed Stops154075- 900 E Holly Ave 154076- 900 E Southwood Dr 154077- 900 E Silver Shadow Dr ", - "language": "en" - } - ] - } - } - }, - { - "id": "10539_87708", - "alert": { - "informedEntity": [ - { - "routeId": "87708" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Temp Closed Stop ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporarily Closed Stop300 E S Temple Stop 102122", - "language": "en" - } - ] - } - } - }, - { - "id": "10549_45409", - "alert": { - "informedEntity": [ - { - "routeId": "45409" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Daytime Construction (6AM - 6PM)", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head south on Mario Capecchi Dr,Pass through South Campus DrTemporary Stop: Stop ID 101379 Mario Capecchi Dr & South CampusTake the first right onto 400 S/Research RdTake the first right onto 1800 E,Turn left onto South Campus Dr back to regular routeTemporary Stop: 1750 E South Campus Drive", - "language": "en" - } - ] - } - } - }, - { - "id": "10549_32878", - "alert": { - "informedEntity": [ - { - "routeId": "32878" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Daytime Construction (6AM - 6PM)", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head south on Mario Capecchi Dr,Pass through South Campus DrTemporary Stop: Stop ID 101379 Mario Capecchi Dr & South CampusTake the first right onto 400 S/Research RdTake the first right onto 1800 E,Turn left onto South Campus Dr back to regular routeTemporary Stop: 1750 E South Campus Drive", - "language": "en" - } - ] - } - } - }, - { - "id": "10549_45408", - "alert": { - "informedEntity": [ - { - "routeId": "45408" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Daytime Construction (6AM - 6PM)", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head south on Mario Capecchi Dr,Pass through South Campus DrTemporary Stop: Stop ID 101379 Mario Capecchi Dr & South CampusTake the first right onto 400 S/Research RdTake the first right onto 1800 E,Turn left onto South Campus Dr back to regular routeTemporary Stop: 1750 E South Campus Drive", - "language": "en" - } - ] - } - } - }, - { - "id": "10550_2116", - "alert": { - "informedEntity": [ - { - "routeId": "2116" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "NOTICE", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporarily Discontinued Stop ID: 628169 - SB 1900 W 5600 STemporary Stop SB 1900 W 5700 S (in front of the Bank of Utah)", - "language": "en" - } - ] - } - } - }, - { - "id": "10551_87708", - "alert": { - "informedEntity": [ - { - "routeId": "87708" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Notice: Temporary Stop", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporary Stop400 S just west of Redwood Rd ", - "language": "en" - } - ] - } - } - }, - { - "id": "10552_45409", - "alert": { - "informedEntity": [ - { - "routeId": "45409" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Temporary Stop", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporary Stop400 S just west of Redwood Rd ", - "language": "en" - } - ] - } - } - }, - { - "id": "10553_2022", - "alert": { - "informedEntity": [ - { - "routeId": "2022" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Temporary Stop", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporary Stop2100 S 1200 E near Chick Fil-A ", - "language": "en" - } - ] - } - } - }, - { - "id": "10568_2022", - "alert": { - "informedEntity": [ - { - "routeId": "2022" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Night Work 08:00 PM-06:00 AM ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head west on 2100 S,Turn right onto 1500 E,Turn left onto 1700 S,Turn left onto 1100 E,Turn right onto 2100 S back to route. ", - "language": "en" - } - ] - } - } - }, - { - "id": "10569_2022", - "alert": { - "informedEntity": [ - { - "routeId": "2022" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Night Work 08:00 PM-06:00 AM", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head east on 2100 S,Turn left onto 1100 E,Turn right onto 1700 S,Turn right onto 1500 E,Turn left onto 2100 S back to route. ", - "language": "en" - } - ] - } - } - }, - { - "id": "10570_32878", - "alert": { - "informedEntity": [ - { - "routeId": "32878" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Night Work 08:00 PM-06:00 AM", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head south on 1300 E,Turn right onto 1700 S,Turn left onto 1100 E,Turn left onto Wilmington Ave,Turn right onto 1300 E back to route. ", - "language": "en" - } - ] - } - } - }, - { - "id": "10571_32878", - "alert": { - "informedEntity": [ - { - "routeId": "32878" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Night Work 08:00 PM-06:00 AM", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head north on 1300 E,Turn left onto Wilmington Ave,Turn right onto Highland Dr/1100 E,Turn right onto 1700 S,Turn left onto 1300 E back to route. ", - "language": "en" - } - ] - } - } - }, - { - "id": "10573_2332", - "alert": { - "informedEntity": [ - { - "routeId": "2332" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction on Magna Main", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head North on 8400 W, Turn Left on 2700 S/Magna Main St, Turn Left on 8800 W/Spencer Ave, Turn Left on 3100 S back to route", - "language": "en" - } - ] - } - } - }, - { - "id": "10574_51572", - "alert": { - "informedEntity": [ - { - "routeId": "51572" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "No left turn ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "From Southbound 500 WTurn left onto 4800 S/ Murray Taylorsville RdTurn right onto 300 W/S Commerce DrTurn left onto Vine St back to route ", - "language": "en" - } - ] - } - } - }, - { - "id": "10575_51572", - "alert": { - "informedEntity": [ - { - "routeId": "51572" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "No left-hand turn ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "From Southbound 500 WTurn left onto 4800 S/ Murray Taylorsville RdTurn right onto 300 W/S Commerce DrTurn left onto Vine St back to route ", - "language": "en" - } - ] - } - } - }, - { - "id": "10576_2053", - "alert": { - "informedEntity": [ - { - "routeId": "2053" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "No right turn onto Vine St", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "From Northbound Murray BlvdTurn right onto 4800 STurn right onto 300 W/S Commerce DrTurn left onto Vine St back to route ", - "language": "en" - } - ] - } - } - }, - { - "id": "10582_2332", - "alert": { - "informedEntity": [ - { - "routeId": "2332" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction on Magna Main", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head west on 2700 S/W Magna Main St Turn left onto 8585 W/Buccaneer DrHead south on Buccaneer Dr toward 3100 STurn left on 3100 S to regular route.*Temporary stop just east of Buccaneer Dr on 3100 S.", - "language": "en" - } - ] - } - } - }, - { - "id": "10588_2061", - "alert": { - "informedEntity": [ - { - "routeId": "2061" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporarily Discontinued Stop:Eastbound 6400 S/Winchester St 700 W - Stop 101375", - "language": "en" - } - ] - } - } - }, - { - "id": "10589_2061", - "alert": { - "informedEntity": [ - { - "routeId": "2061" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporarily Discontinued Stop:Westbound 6400 S/Winchester St 700 W - Stop 101374", - "language": "en" - } - ] - } - } - }, - { - "id": "10591_9605", - "alert": { - "informedEntity": [ - { - "routeId": "9605" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Road Construction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head west on 2nd St toward Adams AveTurn left onto Adams AveTurn right onto 3rd StTurn right onto Washington Blvd, to route", - "language": "en" - } - ] - } - } - }, - { - "id": "10592_9605", - "alert": { - "informedEntity": [ - { - "routeId": "9605" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Road Construction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head south on Washington BlvdTurn left onto 3rd StTurn left onto Adams AveTurn right onto 2nd St, to route", - "language": "en" - } - ] - } - } - }, - { - "id": "10593_9606", - "alert": { - "informedEntity": [ - { - "routeId": "9606" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Road Construction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head west on 2nd St toward Adams AveTurn left onto Adams AveTurn right onto 3rd StTurn right onto S 400 E St/Washington Blvd, to route", - "language": "en" - } - ] - } - } - }, - { - "id": "10594_9606", - "alert": { - "informedEntity": [ - { - "routeId": "9606" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Road Construction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head south on Washington BlvdTurn left onto 3rd StTurn left onto Adams AveTurn right onto 2nd St, to route", - "language": "en" - } - ] - } - } - }, - { - "id": "10595_20160", - "alert": { - "informedEntity": [ - { - "routeId": "20160" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Virginia Street Closure", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head south on Virginia St,Turn right onto 2nd AveTurn left onto U St,Turn left at the onto 1st Ave,Turn right onto Virginia St back to route. ", - "language": "en" - } - ] - } - } - }, - { - "id": "10596_20160", - "alert": { - "informedEntity": [ - { - "routeId": "20160" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Virginia Street Closure", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head north on University St it becomes Virginia St,Turn left onto 1st Ave,Turn right onto T St,Turn right onto 2nd Ave,Turn left onto Virginia St back to route. ", - "language": "en" - } - ] - } - } - }, - { - "id": "10601_19930", - "alert": { - "informedEntity": [ - { - "routeId": "19930" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Adams Ave Closed for construction ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "From 23rd and WashingtonHead north on Washington BlvdTurn left onto 22nd St to Reg route*Passenger info will be placed on the stops on Adams and 22nd St telling them to board the bus on Washington", - "language": "en" - } - ] - } - } - }, - { - "id": "10602_19930", - "alert": { - "informedEntity": [ - { - "routeId": "19930" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Adams Ave closed for construction ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "From 22nd and WashingtonTurn right onto Washington Blvd Reg route.*Passenger info will be placed on the stops on Adams and 22nd St telling them to board the bus on Washington", - "language": "en" - } - ] - } - } - }, - { - "id": "10604_3711", - "alert": { - "informedEntity": [ - { - "routeId": "3711" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction on Freedom Blvd", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head east on 2230 NTurn right onto N University Ave", - "language": "en" - } - ] - } - } - }, - { - "id": "10605_3711", - "alert": { - "informedEntity": [ - { - "routeId": "3711" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction on Freedom Blvd", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head north on University AveTurn left onto 2230 N", - "language": "en" - } - ] - } - } - }, - { - "id": "10622_27613", - "alert": { - "informedEntity": [ - { - "routeId": "27613" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head south on 900 E, Turn right on 5900 S,Turn left on 725 E, Turn right on Winchester St/6400 S back to route", - "language": "en" - } - ] - } - } - }, - { - "id": "10623_27613", - "alert": { - "informedEntity": [ - { - "routeId": "27613" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Water Main Break @ G St. and 9th Ave.", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head east on 9th Ave toward F StTurn left onto F StTurn right onto 10th AveTurn right onto H StTurn left onto 9th Ave, back to route.", - "language": "en" - } - ] - } - } - }, - { - "id": "10624_27613", - "alert": { - "informedEntity": [ - { - "routeId": "27613" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Water Main Break @ G St. and 9th Ave.", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head west on 9th Ave toward H StTurn right onto H StTurn left onto 10th AveTurn left onto F StTurn right onto 9th Ave, back to route", - "language": "en" - } - ] - } - } - }, - { - "id": "10656_45409", - "alert": { - "informedEntity": [ - { - "routeId": "45409" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Temporary Road Closure: AS NEEDED", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head north on Greenwood TerraceTurn right onto Sunnyside AveTurn left onto Foothill DrContinue onto 500 S/University Blvd, to route", - "language": "en" - } - ] - } - } - }, - { - "id": "10657_45409", - "alert": { - "informedEntity": [ - { - "routeId": "45409" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Temporary Road Closure: AS NEEDED", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head south on Campus Center Dr toward 500 S / University BlvdTurn left onto 500 S/University BlvdTurn left onto Foothill DrTurn right onto Sunnyside AveTurn left onto Greenwood Terrace, back to route", - "language": "en" - } - ] - } - } - }, - { - "id": "10658_45408", - "alert": { - "informedEntity": [ - { - "routeId": "45408" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Temporary Road Closure: AS NEEDED", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head north on Greenwood TerraceTurn right onto Sunnyside AveTurn left onto Foothill DrContinue onto 500 S/University BlvdTurn right onto Campus Center Dr (signs for Museum of Fine Arts), to route", - "language": "en" - } - ] - } - } - }, - { - "id": "10659_45408", - "alert": { - "informedEntity": [ - { - "routeId": "45408" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Temporary Road Closure: AS NEEDED", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head south on Campus Center Dr toward 500 S/University BlvdTurn left onto 500 S/University BlvdTurn left onto Foothill DrTurn right onto Sunnyside AveTurn left onto Greenwood Terrace, back to route", - "language": "en" - } - ] - } - } - }, - { - "id": "10660_32878", - "alert": { - "informedEntity": [ - { - "routeId": "32878" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Road Closure ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head south on 1300 E,Turn right onto 4085 S,Turn left onto 1100 E,Turn left onto 4500 S,Turn right onto 1300 E back to route. ", - "language": "en" - } - ] - } - } - }, - { - "id": "10661_19930", - "alert": { - "informedEntity": [ - { - "routeId": "19930" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Road Construction 08:00 PM-07:00 AM", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head south on 300 W,Turn left onto North Temple St,Turn right onto W Temple,Turn left onto S Temple,Turn right onto State St back to route ", - "language": "en" - } - ] - } - } - }, - { - "id": "10663_19906", - "alert": { - "informedEntity": [ - { - "routeId": "19906" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Road Construction 08:00 PM-07:00 AM ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head south on 300 W,Turn left onto North Temple St,Turn right onto W Temple,Turn left onto S Temple,Turn right onto State St,", - "language": "en" - } - ] - } - } - }, - { - "id": "10667_19930", - "alert": { - "informedEntity": [ - { - "routeId": "19930" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "NOTICE", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporarily Disc Stop 301491 - 1800 N Main St SBDisc & removed completely  633102 - 1800 N Main St NB", - "language": "en" - } - ] - } - } - }, - { - "id": "10668_93348", - "alert": { - "informedEntity": [ - { - "routeId": "93348" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "NOTICE: Blind Center EOL", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Blind Center EOL\nPlease do not pick up passengers when holding behind the Blind\nCenter. \nThis is not a designated pick-up location. Direct customers to the first stop\nat the cul-de-sac.", - "language": "en" - } - ] - } - } - }, - { - "id": "10670_93348", - "alert": { - "informedEntity": [ - { - "routeId": "93348" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "CONSTRUCTION - Sidewalk Closed", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "BUS STOP ID: 117015 - CLOSED - NORTHBOUND NORTH OF REDWOOD RD 700 NORTH", - "language": "en" - } - ] - } - } - }, - { - "id": "10671_87708", - "alert": { - "informedEntity": [ - { - "routeId": "87708" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Sidewalk is closed", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Bus Stop: 117015 Closed-NB. North of redwood (720 N Redwood Rd)", - "language": "en" - } - ] - } - } - }, - { - "id": "10672_2332", - "alert": { - "informedEntity": [ - { - "routeId": "2332" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction on Magna Main St ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head west on Magna Main St,Turn left onto 8800 W,Turn left onto 3100 S, Continue eastbound on 3100 S back to route. ", - "language": "en" - } - ] - } - } - }, - { - "id": "10697_92754", - "alert": { - "informedEntity": [ - { - "routeId": "92754" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Nightly Road Closure (8:00pm-5:00a.m)", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "In Springville continue South onto Main St (follow 821 route)Turn right onto Spanish Fork PkwyTurn left onto Cayon Creek Pkwy back to reg route.", - "language": "en" - } - ] - } - } - }, - { - "id": "10698_3687", - "alert": { - "informedEntity": [ - { - "routeId": "3687" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head southeast on 1450 N/Timpanogos Pkwy Turn right onto 800 E To Reg route. ", - "language": "en" - } - ] - } - } - }, - { - "id": "10699_3687", - "alert": { - "informedEntity": [ - { - "routeId": "3687" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head north on 800 E toward Turn left onto 1450 N/Timpanogos PkwyTurn right onto Technology Way Back to reg route. ", - "language": "en" - } - ] - } - } - }, - { - "id": "10700_92754", - "alert": { - "informedEntity": [ - { - "routeId": "92754" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Nightly Road Closure (8:00pm-5:00am)", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "In Spanish Fork continue on Canyon Creek PkwyTurn right onto Spanish Fork PkwyTurn left onto UT-51 N/S State St in Springville Reg route. ", - "language": "en" - } - ] - } - } - }, - { - "id": "10703_93348", - "alert": { - "informedEntity": [ - { - "routeId": "93348" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Nightly Construction Closure From 8:00 PM to 6:00 AM", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head south on 800 WTurn right onto 1500 STurn left onto 1100 WTurn right onto 1950 S1950 S turns left and becomes 1200 WTurn right onto 1250 W/2185 STurn right onto 1100 N/2600 S, back to route.", - "language": "en" - } - ] - } - } - }, - { - "id": "10704_93348", - "alert": { - "informedEntity": [ - { - "routeId": "93348" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Nightly Construction Closure", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head south on 800 WTurn right onto 1500 STurn left onto 1100 WTurn right onto 1970 S1970 S turns left and becomes 1200 WTurn right onto 1250 W/2185 STurn right onto 1100 N/2600 S, back to route.", - "language": "en" - } - ] - } - } - }, - { - "id": "10705_93348", - "alert": { - "informedEntity": [ - { - "routeId": "93348" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Nightly Construction Closure From 8:00 PM to 6:00 AM", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head east on 1100 N/2600 S toward 1250 WTurn left onto 1250 WTurn left onto 1200 W1200 W turns right and becomes 1950 STurn left onto 1100 WHead east on 1500 STurn left onto 800 W, back to route", - "language": "en" - } - ] - } - } - }, - { - "id": "10706_93348", - "alert": { - "informedEntity": [ - { - "routeId": "93348" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Route 417 Notice ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Due to Night Work Detour temporary stop has been placed at:1500 S 830 W ", - "language": "en" - } - ] - } - } - }, - { - "id": "10707_2116", - "alert": { - "informedEntity": [ - { - "routeId": "2116" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "ROAD WORK ON 6000 S", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head west 5700 S Turn right onto 2200 WTurn left onto 5600 STurn right onto 3500 W back to regular route ", - "language": "en" - } - ] - } - } - }, - { - "id": "10708_2116", - "alert": { - "informedEntity": [ - { - "routeId": "2116" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "ROAD WORK ON 6000 S", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head south on 3500 WTurn left onto 5600 STurn right onto 1900 WTurn right onto 5700 S and EOL near City Buffet", - "language": "en" - } - ] - } - } - }, - { - "id": "10711_87708", - "alert": { - "informedEntity": [ - { - "routeId": "87708" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Closed Stops", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporarily Closed Stops: 118139 at 700 E118141 SOUTH TEMPLE / 900 E ", - "language": "en" - } - ] - } - } - }, - { - "id": "10712_87708", - "alert": { - "informedEntity": [ - { - "routeId": "87708" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Closed Stop", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporarily Closed Stop: 118149 at 900 E", - "language": "en" - } - ] - } - } - }, - { - "id": "10725_93045", - "alert": { - "informedEntity": [ - { - "routeId": "93045" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Lancer Way Construction ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Leaving West Valley Station,Head west on Lancer Way/3650 S,Turn right onto 3200 W,Turn right onto 3500 S,Turn right onto 2700 W back to route. ", - "language": "en" - } - ] - } - } - }, - { - "id": "10726_27610", - "alert": { - "informedEntity": [ - { - "routeId": "27610" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Temp Closed Stop", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporarily Closed Stop due to construction:604 S State street - Southbound stop 126459", - "language": "en" - } - ] - } - } - }, - { - "id": "10727_51572", - "alert": { - "informedEntity": [ - { - "routeId": "51572" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Lancer Way Construction ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head north on 3200 W,Turn right onto 3500 S,Turn right onto 2700 W,Turn right onto 3650 S / Lancer Way,Turn right to enter West Valley Central Station. ", - "language": "en" - } - ] - } - } - }, - { - "id": "10728_34504", - "alert": { - "informedEntity": [ - { - "routeId": "34504" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Lancer Way Construction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head east on 3500 S,Turn right onto 2700 W,Turn right onto Lancer Way/3650 S,Turn right to enter into West Valley Central Station .", - "language": "en" - } - ] - } - } - }, - { - "id": "10729_25310", - "alert": { - "informedEntity": [ - { - "routeId": "25310" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Lancer Way Construction\t", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "From East on Lancer Way / 3650 STurn left on 3200 WTurn right on 3500 STurn right on 2700 WTurn right on Lancer Way / 3650 STurn right into WVC Station", - "language": "en" - } - ] - } - } - }, - { - "id": "10730_34505", - "alert": { - "informedEntity": [ - { - "routeId": "34505" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Lancer Way Construction ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Leaving West Valley Central station, Turn right onto W 3650 S/Lancer Way,Turn right onto 3200 W, Turn right onto 3500 S,Turn left onto S 2700 W/Constitution Blvd back to route. ", - "language": "en" - } - ] - } - } - }, - { - "id": "10731_33284", - "alert": { - "informedEntity": [ - { - "routeId": "33284" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Lancer Way Construction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "From West on Lancer Way 3650 STurn right on 3200 WTurn right on 3500 STurn left on Constitution Blvd / 2700 W back to regular route", - "language": "en" - } - ] - } - } - }, - { - "id": "10732_20161", - "alert": { - "informedEntity": [ - { - "routeId": "20161" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Lancer Way Construction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Leaving West Valley, Turn right on 3650 S/Lancer Way, Turn right on 3200 W, Turn right on 3500 S, Turn right on 2700 W back to route", - "language": "en" - } - ] - } - } - }, - { - "id": "10733_2332", - "alert": { - "informedEntity": [ - { - "routeId": "2332" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Southbound travel on 700 West", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Continue eastbound on 3500 SouthTurn right onto 700 WestTurn right onto Carlisle StreetTurn right onto 900 WestTurn right onto 3500 South to regular route", - "language": "en" - } - ] - } - } - }, - { - "id": "10742_3686", - "alert": { - "informedEntity": [ - { - "routeId": "3686" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "400 SOUTH STATION CLOSED (EST. 2 YEARS) ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "NOTICE: STAY IN REGULAR LANE UNTIL YOU'VE PAST 400 S STATION BEFORE ENTERING THE UVX LANE BEYOND 300 S", - "language": "en" - } - ] - } - } - }, - { - "id": "10743_3686", - "alert": { - "informedEntity": [ - { - "routeId": "3686" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "400 STATION CLOSED (EST. 2 YEARS)", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "NOTICE: AFTER SERVICING THE CENTER STREET STATION ON UNIVERSITY AVE, SAFELY MOVE OUT OF THE UVX LANE WHEN YOU CAN, MOVE TO THE RIGHT AND CONTINUE TO PROVO STATION.", - "language": "en" - } - ] - } - } - }, - { - "id": "10745_81586", - "alert": { - "informedEntity": [ - { - "routeId": "81586" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "KEISEL AVE CLOSED NORTH OF 23RD", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "From Kiesel Ave and 23rd StTurn left onto 23rd StTurn right onto Grant AveTurn right onto 22nd StTurn right onto Washington Blvd back to regular route", - "language": "en" - } - ] - } - } - }, - { - "id": "10750_93045", - "alert": { - "informedEntity": [ - { - "routeId": "93045" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "CONCRETE WORK ON EAST ENTRANCE TO WVC STATION", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Continue north on 2700 W/Constitution BlvdTurn left onto 3500 SouthTurn left onto 3200 WestTurn left onto 3650 South/Lancer WayTurn left into West Valley Central Station via the East Entrance. ", - "language": "en" - } - ] - } - } - }, - { - "id": "10751_93045", - "alert": { - "informedEntity": [ - { - "routeId": "93045" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "CONCRETE WORK ON EAST ENTRANCE AT WVC STATION", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "NOTICE: Use newly constructed bus loop at WVC station to loop through the station and exit using the West Exit ", - "language": "en" - } - ] - } - } - }, - { - "id": "10752_20161", - "alert": { - "informedEntity": [ - { - "routeId": "20161" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "CONCRETE WORK ON EAST ENTRANCE AT WVC STATION", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Continue north on 2700 W/Constitution blvdTurn left onto 3500 SouthTurn left onto 3200 WestTurn left onto 3650 SouthTurn left into West Valley Central Station via East Entrance ", - "language": "en" - } - ] - } - } - }, - { - "id": "10753_20161", - "alert": { - "informedEntity": [ - { - "routeId": "20161" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "CONCRETE WORK ON EAST ENTRANCE AT WVC STATION", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "NOTICE: Use newly constructed bus loop at West Valley Central Station to loop through the station and leave using the West Exit", - "language": "en" - } - ] - } - } - }, - { - "id": "10754_34505", - "alert": { - "informedEntity": [ - { - "routeId": "34505" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "CONCRETE WORK ON EAST ENTRANCE AT WVC STATION", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Continue south on 2700 W/Constitution blvdTurn right on 3500 SouthTurn left on 3200 WestTurn left on 3650 SouthTurn left in to West Valley Central Station via East Entrance", - "language": "en" - } - ] - } - } - }, - { - "id": "10755_34505", - "alert": { - "informedEntity": [ - { - "routeId": "34505" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "CONCRETE WORK ON EAST ENTRANCE AT WVC STATION", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "NOTICE: Use newly constructed bus loop at West Valley Central Station to loop through the station and leave using the West Exit", - "language": "en" - } - ] - } - } - }, - { - "id": "10756_33284", - "alert": { - "informedEntity": [ - { - "routeId": "33284" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "CONCRETE WORK ON EAST ENTRANCE AT WVC STATION", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Continue south on 2700 W/Constitution blvdTurn right onto 3500 SouthTurn left onto 3200 WestTurn left onto 3650 SouthTurn left in to West Valley Central Station via East Entrance ", - "language": "en" - } - ] - } - } - }, - { - "id": "10757_3687", - "alert": { - "informedEntity": [ - { - "routeId": "3687" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head north on 800 E,Turn left onto 1450 N/Timpanogos Pkwy,Continue north to 1450 N/Timpanogos Pkwy to get back to route. ", - "language": "en" - } - ] - } - } - }, - { - "id": "10758_3687", - "alert": { - "informedEntity": [ - { - "routeId": "3687" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head south on 1450 N/Timpanogos Pkwy,Turn right onto 800 E,Continue south on 800 E back to route. ", - "language": "en" - } - ] - } - } - }, - { - "id": "10771_2343", - "alert": { - "informedEntity": [ - { - "routeId": "2343" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Closed Stop", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporarily Closed Stop: 198304 - Murray Holladay Rd / 2300 E", - "language": "en" - } - ] - } - } - }, - { - "id": "10772_19930", - "alert": { - "informedEntity": [ - { - "routeId": "19930" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction on Main St in Sunset", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head north on Main StTurn left onto 1300 NTurn right onto 250 WTurn right onto 2300 NTurn left onto Main St back to regular route", - "language": "en" - } - ] - } - } - }, - { - "id": "10773_19930", - "alert": { - "informedEntity": [ - { - "routeId": "19930" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction on Main St in Sunset", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head south on Main StTurn right onto 2300 NTurn left onto 250 WTurn left onto 1300 NTurn right onto Main St back to regular route", - "language": "en" - } - ] - } - } - }, - { - "id": "10776_79372", - "alert": { - "informedEntity": [ - { - "routeId": "79372" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Closed Stops", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporarily Closed Stops: 198136 400 W 400 S - Westbound125010 300 W 400 S - Westbound126059 900 E 400 S - Westbound ", - "language": "en" - } - ] - } - } - }, - { - "id": "10777_79372", - "alert": { - "informedEntity": [ - { - "routeId": "79372" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Temporary Stop ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporary Stop: 400 S 450 W before the 4th Street Clinic ", - "language": "en" - } - ] - } - } - }, - { - "id": "10778_3687", - "alert": { - "informedEntity": [ - { - "routeId": "3687" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "CONSTRUCTION ON 1600 N ALL DAY", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head east on 1600 N St Turn right onto 130 E/Timberwolf TrlTurn left onto Timpanogos BlvdTurn left onto 400 ETurn right onto 1600 N St back to regular route Please use caution in School Zone", - "language": "en" - } - ] - } - } - }, - { - "id": "10779_3687", - "alert": { - "informedEntity": [ - { - "routeId": "3687" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "CONSTRUCTION ON 1600 N ALL DAY", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head west on 1600 N St Turn left onto 400 ETurn right onto Timpanogos BlvdTurn right onto 130 E/Timberwolf TrlTurn left onto 1600 N St back to regular routePlease use caution in School Zone", - "language": "en" - } - ] - } - } - }, - { - "id": "10783_81586", - "alert": { - "informedEntity": [ - { - "routeId": "81586" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "KEISEL AVENUE CLOSURE BETWEEN 23RD & 24TH - ALL DAY\n*AS NEEDED ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "From 24th St and Grant AveContinue north on Grant AveTurn right onto 23rd StTurn left onto Kiesel Ave back to regular route ", - "language": "en" - } - ] - } - } - }, - { - "id": "10785_2328", - "alert": { - "informedEntity": [ - { - "routeId": "2328" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporarily Closed Stop: 3300 S 500 E - 137309 - No temporary stop", - "language": "en" - } - ] - } - } - }, - { - "id": "10787_2129", - "alert": { - "informedEntity": [ - { - "routeId": "2129" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "500 E 200 N CONSTRUCTION - ALL DAY", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head north on 500 E Turn right onto 100 NTurn left onto 600 ETurn right onto 200 N back to regular route", - "language": "en" - } - ] - } - } - }, - { - "id": "10788_2129", - "alert": { - "informedEntity": [ - { - "routeId": "2129" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "500 E 200 N CONSTRUCTION - ALL DAY", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head west on 200 N Turn left onto 600 ETurn right onto 100 NTurn left onto 500 E back to regular route", - "language": "en" - } - ] - } - } - }, - { - "id": "10789_2328", - "alert": { - "informedEntity": [ - { - "routeId": "2328" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Roadwork and Building Construction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head west on 3300 S, Turn left on 1300 E, Turn right on 3900 S, Turn right on 1100 E, Turn left on 3300 S back to route. ", - "language": "en" - } - ] - } - } - }, - { - "id": "10790_27610", - "alert": { - "informedEntity": [ - { - "routeId": "27610" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporarily Closed Stop: 4800 S State St - 137455", - "language": "en" - } - ] - } - } - }, - { - "id": "10790_2343", - "alert": { - "informedEntity": [ - { - "routeId": "2343" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporarily Closed Stop: 4800 S State St - 137455", - "language": "en" - } - ] - } - } - }, - { - "id": "10791_34505", - "alert": { - "informedEntity": [ - { - "routeId": "34505" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head south on 4800 W,Turn left onto 4715 S,Turn right onto 4720 W,Turn right onto 4865 S,Turn left onto 4980 W back to route. ", - "language": "en" - } - ] - } - } - }, - { - "id": "10792_34505", - "alert": { - "informedEntity": [ - { - "routeId": "34505" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head north on 4980 W,Turn right onto 4850 S,Turn left onto 4620 W,Turn left onto 4715 S/4700 S,Turn right onto 4800 W back to route. ", - "language": "en" - } - ] - } - } - }, - { - "id": "10797_19906", - "alert": { - "informedEntity": [ - { - "routeId": "19906" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "NO RIGHT TURN ON 400 S ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Turn right onto 200 ETurn left onto 300 S/BroadwayTurn right onto State St to regular route.Passenger have been directed to use the stop at 300 South State Street.", - "language": "en" - } - ] - } - } - }, - { - "id": "10797_19936", - "alert": { - "informedEntity": [ - { - "routeId": "19936" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "NO RIGHT TURN ON 400 S ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Turn right onto 200 ETurn left onto 300 S/BroadwayTurn right onto State St to regular route.Passenger have been directed to use the stop at 300 South State Street.", - "language": "en" - } - ] - } - } - }, - { - "id": "10798_27610", - "alert": { - "informedEntity": [ - { - "routeId": "27610" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Right Turn from Main St to North Temple ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head south on Main StTurn right onto 200 NTurn left onto W TempleTurn right onto North Temple back to route", - "language": "en" - } - ] - } - } - }, - { - "id": "10817_19906", - "alert": { - "informedEntity": [ - { - "routeId": "19906" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction in Centerville 08:00-16:00", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head north on 400 E, Turn left on Pages Ln / 1000 S, Turn right on Main St, Turn right on Porter Ln / 400 S, Turn left on 400 E back to route", - "language": "en" - } - ] - } - } - }, - { - "id": "10818_19906", - "alert": { - "informedEntity": [ - { - "routeId": "19906" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction in Centerville 08:00-16:00", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head south on 400 E, Turn right on Porter Ln / 400 S, Turn left on Main St, Turn left on Pages Ln / 1000 S, Turn right on 400 E back to route", - "language": "en" - } - ] - } - } - }, - { - "id": "10819_3686", - "alert": { - "informedEntity": [ - { - "routeId": "3686" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Provo Viaduct Reconstruction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Leaving Provo Station turn right on 920 S, Use the roundabout to turn left on Freedom Blvd, Turn left on Towne Center Blvd, Turn left on 1200 S, Turn left on University Ave back to route400 S UVX Station is closed Re-enter the UVX lane after 300 S", - "language": "en" - } - ] - } - } - }, - { - "id": "10820_3711", - "alert": { - "informedEntity": [ - { - "routeId": "3711" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Provo Viaduct Reconstruction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Leaving Provo Station turn right on 920 S, Use the roundabout to turn left on Freedom Blvd, Turn left on Towne Center Blvd, Turn left on 1200 S, Turn left on University Ave back to routeAll bus stops on University Ave south of 300 S are closed", - "language": "en" - } - ] - } - } - }, - { - "id": "10821_37811", - "alert": { - "informedEntity": [ - { - "routeId": "37811" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Provo Viaduct Reconstruction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Leaving Provo Station turn right on 920 S, Use the roundabout to turn left on Freedom Blvd, Turn left on Towne Center Blvd, Turn left on 1200 S, Turn left on University Ave back to routeAll bus stops on University Ave south of 300 S are closed ", - "language": "en" - } - ] - } - } - }, - { - "id": "10822_92754", - "alert": { - "informedEntity": [ - { - "routeId": "92754" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Provo Viaduct Reconstruction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Leaving Provo Station turn right on 920 S, Use the roundabout to turn left on Freedom Blvd, Turn left on Towne Center Blvd, Turn left on 1200 S, Turn left on University Ave back to routeAll bus stops on University Ave south of 300 S are closed ", - "language": "en" - } - ] - } - } - }, - { - "id": "10823_37811", - "alert": { - "informedEntity": [ - { - "routeId": "37811" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Provo Viaduct Reconstruction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "After servicing the bus stop at 20 South University Ave by the Provo \nCity Center Temple, move over into the UVX lane when you can. Stay in \nthe UVX lane until it ends at 400 South University. Use the UVX queue \njump to merge into traffic and back to regular route.", - "language": "en" - } - ] - } - } - }, - { - "id": "10824_3711", - "alert": { - "informedEntity": [ - { - "routeId": "3711" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Provo Viaduct Reconstruction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "When coming WEST on 300 South in Provo, use the \"bus only\" left turn \nlane to turn left on University Ave and go directly into the UVX lane. \nAt 400 South, use the UVX queue jump to merge into traffic and regular \nroute.", - "language": "en" - } - ] - } - } - }, - { - "id": "10825_92754", - "alert": { - "informedEntity": [ - { - "routeId": "92754" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Provo Viaduct Reconstruction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "When\n coming WEST on 300 South in Provo, use the \"bus only\" left turn lane to\n turn left on University Ave and go directly into the UVX lane. At 400 \nSouth, use the UVX queue jump to merge into traffic and regular route.", - "language": "en" - } - ] - } - } - }, - { - "id": "10826_10810", - "alert": { - "informedEntity": [ - { - "routeId": "10810" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Provo Viaduct Reconstruction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head west on E Bay Blvd, Turn right on Towne Centre Blvd, Please service the temp stop near the Provo Mall UVX StationTurn right on Freedom Blvd, Use the roundabout to turn right on 920 S, Turn left on 100 W back to route Please service the temp stop on 100 W 920 S before Provo Station", - "language": "en" - } - ] - } - } - }, - { - "id": "10827_37499", - "alert": { - "informedEntity": [ - { - "routeId": "37499" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Provo Viaduct Reconstruction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head north on University Ave, Turn left on E Bay Blvd/Towne Centre Dr, Turn right on Towne Center Blvd, Please service the temp stop near the Provo Mall UVX stationTurn right on Freedom Blvd, Use the roundabout to turn right on 920 S, Turn left on 100 W back to routePlease service the temp stop on 100 W 920 S before Provo Station", - "language": "en" - } - ] - } - } - }, - { - "id": "10828_10810", - "alert": { - "informedEntity": [ - { - "routeId": "10810" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Provo Viaduct Reconstruction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head south on 100 W, Please service the temp stop on 100 W 920 S Turn right on 920 S, Use the roundabout to turn left on Freedom Blvd, Turn left on Towne Centre Blvd, Please service the temp stop near the Provo Mall UVX stationTurn left on E Bay Blvd/Towne Centre Dr back to route", - "language": "en" - } - ] - } - } - }, - { - "id": "10829_37499", - "alert": { - "informedEntity": [ - { - "routeId": "37499" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Provo Viaduct Reconstruction", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head south on 100 W, Please service the temp stop on 100 W 920 S Turn right on 920 S, Use the roundabout to turn left on Freedom Blvd, Turn left on Towne Centre Blvd, Please service the temp stop near the Provo Mall UVX stationTurn left on E Bay Blvd/Towne Centre Dr, Turn right on University Ave to go south to I-15 SB back to route ", - "language": "en" - } - ] - } - } - }, - { - "id": "10830_45418", - "alert": { - "informedEntity": [ - { - "routeId": "45418" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Night Work Detour 09:00 PM-05:00 AM", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head south on Highland Dr,Turn left onto Crandall Ave S,Turn right onto 1400 E,Turn right onto Zenith Ave,Turn left onto Highland Dr back to route", - "language": "en" - } - ] - } - } - }, - { - "id": "10831_45418", - "alert": { - "informedEntity": [ - { - "routeId": "45418" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Night Work Detour 09:00 PM-05:00 AM", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head north on Highland Dr,Turn right onto Zenith Ave,Turn left onto 1400 E,Turn left onto Crandall Ave STurn right onto Highland Dr back to route", - "language": "en" - } - ] - } - } - }, - { - "id": "10832_2332", - "alert": { - "informedEntity": [ - { - "routeId": "2332" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Eastbound BRT traffic Signals ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "*Eastbound buses do NOT service BRT lanes*", - "language": "en" - } - ] - } - } - }, - { - "id": "10848_79372", - "alert": { - "informedEntity": [ - { - "routeId": "79372" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "\n", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Bus Stop # 126059 at 900 E 400 S, Closed for Construction. ", - "language": "en" - } - ] - } - } - }, - { - "id": "10852_27613", - "alert": { - "informedEntity": [ - { - "routeId": "27613" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Closed Stops ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporarily Closed Stops: 154074- 900 E Woodshire Ave154076- 900 E Southwood Dr ", - "language": "en" - } - ] - } - } - }, - { - "id": "10853_27613", - "alert": { - "informedEntity": [ - { - "routeId": "27613" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "Temp Closed Stop", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporarily Closed Stops: 154090- 900 E 6400 S154091- 900 E Southwood Dr 154089- Winchester St 900 E", - "language": "en" - } - ] - } - } - }, - { - "id": "10868_87708", - "alert": { - "informedEntity": [ - { - "routeId": "87708" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "LUZ DE LAS NACIONES TEMPORARY STOPS", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporary Stops:47 S/West Temple160 S/West Temple200 S/ West Temple ", - "language": "en" - } - ] - } - } - }, - { - "id": "10868_19930", - "alert": { - "informedEntity": [ - { - "routeId": "19930" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "LUZ DE LAS NACIONES TEMPORARY STOPS", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporary Stops:47 S/West Temple160 S/West Temple200 S/ West Temple ", - "language": "en" - } - ] - } - } - }, - { - "id": "10868_27610", - "alert": { - "informedEntity": [ - { - "routeId": "27610" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "LUZ DE LAS NACIONES TEMPORARY STOPS", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporary Stops:47 S/West Temple160 S/West Temple200 S/ West Temple ", - "language": "en" - } - ] - } - } - }, - { - "id": "10868_20160", - "alert": { - "informedEntity": [ - { - "routeId": "20160" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "LUZ DE LAS NACIONES TEMPORARY STOPS", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporary Stops:47 S/West Temple160 S/West Temple200 S/ West Temple ", - "language": "en" - } - ] - } - } - }, - { - "id": "10868_19902", - "alert": { - "informedEntity": [ - { - "routeId": "19902" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "LUZ DE LAS NACIONES TEMPORARY STOPS", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporary Stops:47 S/West Temple160 S/West Temple200 S/ West Temple ", - "language": "en" - } - ] - } - } - }, - { - "id": "10868_87522", - "alert": { - "informedEntity": [ - { - "routeId": "87522" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "LUZ DE LAS NACIONES TEMPORARY STOPS", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporary Stops:47 S/West Temple160 S/West Temple200 S/ West Temple ", - "language": "en" - } - ] - } - } - }, - { - "id": "10868_19936", - "alert": { - "informedEntity": [ - { - "routeId": "19936" - } - ], - "cause": "OTHER_CAUSE", - "headerText": { - "translation": [ - { - "text": "LUZ DE LAS NACIONES TEMPORARY STOPS", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Temporary Stops:47 S/West Temple160 S/West Temple200 S/ West Temple ", - "language": "en" - } - ] - } - } - }, - { - "id": "10869_87708", - "alert": { - "informedEntity": [ - { - "routeId": "87708" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction All Day", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "From eastbound North Star Dr*Temp stop just before the Health Dept. Right on Cornell StRight on N Temple to resume route", - "language": "en" - } - ] - } - } - }, - { - "id": "10870_87708", - "alert": { - "informedEntity": [ - { - "routeId": "87708" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction All Day", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "From eastbound North Star Dr *Temp stop before the Health Department Right on Cornell St Right on N Temple to resume route ", - "language": "en" - } - ] - } - } - }, - { - "id": "10871_27614", - "alert": { - "informedEntity": [ - { - "routeId": "27614" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction All Day ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "From eastbound North Star Dr *Temp stop before the Health Department Right on Cornell St Right on N Temple to resume route ", - "language": "en" - } - ] - } - } - }, - { - "id": "10872_27614", - "alert": { - "informedEntity": [ - { - "routeId": "27614" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction All Day ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "From eastbound North Star Dr *Temp stop before the Health Department Right on Cornell St Right on N Temple to resume route ", - "language": "en" - } - ] - } - } - }, - { - "id": "10873_41354", - "alert": { - "informedEntity": [ - { - "routeId": "41354" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction All Day ", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "From eastbound North Star Dr *Temp stop before the Health Department*EOL at the temp stop Right on Cornell St Right on N Temple to resume route ", - "language": "en" - } - ] - } - } - }, - { - "id": "10878_19906", - "alert": { - "informedEntity": [ - { - "routeId": "19906" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction in Centerville All Day", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "From northbound 400 E Left on 200 SRight on 300 ERight on 100 SLeft on 400 E to resume route *Please drive slowly due to dips in the road ", - "language": "en" - } - ] - } - } - }, - { - "id": "10879_19906", - "alert": { - "informedEntity": [ - { - "routeId": "19906" - } - ], - "cause": "CONSTRUCTION", - "headerText": { - "translation": [ - { - "text": "Construction in Centerville All Day", - "language": "en" - } - ] - }, - "descriptionText": { - "translation": [ - { - "text": "Head south on 400 E toward E 100 STurn right at 100 STurn left at 300 ETurn left at 200 STurn right at 400 E back to route*Please drive slowly due to dips in the road ", - "language": "en" - } - ] - } - } - } - ] -} \ No newline at end of file diff --git a/app.js b/app.js deleted file mode 100644 index 17c012d..0000000 --- a/app.js +++ /dev/null @@ -1,22 +0,0 @@ -import express from "express"; -import cors from "cors"; -import vehiclesRouter from "./src/routes/vehicles.js"; -import routesRouter from "./src/routes/routes.js"; - -const app = express(); -app.use(cors()); -app.use(express.json()); - -const base = "/api/v0"; - -app.get(`${base}/`, (req, res) => { - res.json({status: "ok", version: "v0", ts: new Date().toISOString()}); -}); - -app.use(`${base}/vehicles`, vehiclesRouter); - -app.use(base, routesRouter); - -app.get("/", (req, res) => res.redirect(`${base}/`)); - -export default app; diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..ac53863 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,45 @@ +version: '3.9' + +services: + uta-mysql: + image: mysql:8.0 + container_name: uta-mysql + restart: unless-stopped + environment: + MYSQL_ROOT_PASSWORD: uta123 + MYSQL_DATABASE: uta + MYSQL_USER: uta + MYSQL_PASSWORD: uta123 + command: --default-authentication-plugin=mysql_native_password + volumes: + - mysql_data:/var/lib/mysql + - ./init-db.sql:/docker-entrypoint-initdb.d/init-db.sql:ro + ports: + - "3306:3306" + healthcheck: + test: ["CMD", "mysqladmin", "ping", "-h", "localhost", "-puta", "--password=uta123"] + interval: 10s + timeout: 5s + retries: 5 + + uta-sync: + build: . + container_name: uta-sync + ports: + - "1001:1001" + restart: unless-stopped + environment: + - DATABASE_URL=mysql://uta:uta123@uta-mysql:3306/uta + - HEALTH_PORT=3000 + - NODE_ENV=production + depends_on: + uta-mysql: + condition: service_healthy + healthcheck: + test: ["CMD", "wget", "--spider", "http://localhost:3000/health"] + interval: 30s + timeout: 15s + retries: 3 + +volumes: + mysql_data: diff --git a/init-db.sql b/init-db.sql new file mode 100644 index 0000000..472d4e9 --- /dev/null +++ b/init-db.sql @@ -0,0 +1,98 @@ +CREATE TABLE routes ( + route_id VARCHAR(50) PRIMARY KEY, + agency_id VARCHAR(50), + route_short_name VARCHAR(50), + route_long_name VARCHAR(255), + route_desc TEXT, + route_type INT, + route_url VARCHAR(255), + route_color VARCHAR(10), + route_text_color VARCHAR(10) +); + +CREATE TABLE trips ( + trip_id VARCHAR(50) PRIMARY KEY, + route_id VARCHAR(50), + service_id VARCHAR(50), + shape_id VARCHAR(50), + trip_headsign VARCHAR(255), + trip_short_name VARCHAR(50), + direction_id INT, + block_id VARCHAR(50), + wheelchair_accessible INT, + bikes_allowed INT, + FOREIGN KEY (route_id) REFERENCES routes(route_id) +); +CREATE TABLE stops ( + stop_id VARCHAR(50) PRIMARY KEY, + stop_code VARCHAR(50), + stop_name VARCHAR(255), + stop_desc TEXT, + stop_lat DOUBLE, + stop_lon DOUBLE, + zone_id VARCHAR(50), + stop_url VARCHAR(255), + location_type INT DEFAULT NULL, + parent_station VARCHAR(50), + stop_timezone VARCHAR(50), + wheelchair_boarding INT DEFAULT NULL +); +CREATE TABLE stop_times ( + trip_id VARCHAR(50), + arrival_time VARCHAR(20), + departure_time VARCHAR(20), + stop_id VARCHAR(50), + stop_sequence INT, + stop_headsign VARCHAR(255), + pickup_type INT, + drop_off_type INT, + shape_dist_traveled DOUBLE NOT NULL DEFAULT 0 + timepoint INT, + PRIMARY KEY (trip_id, stop_id, stop_sequence), + FOREIGN KEY (trip_id) REFERENCES trips(trip_id), + FOREIGN KEY (stop_id) REFERENCES stops(stop_id) +); + +CREATE TABLE shapes ( + shape_id VARCHAR(50), + shape_pt_lat DOUBLE, + shape_pt_lon DOUBLE, + shape_pt_sequence INT, + shape_dist_traveled DOUBLE, + PRIMARY KEY (shape_id, shape_pt_sequence) +); + +-- Realtime: vehicle positions +CREATE TABLE rt_vehicle_positions ( + vehicle_id VARCHAR(50), + trip_id VARCHAR(50), + route_id VARCHAR(50), + lat DOUBLE, + lon DOUBLE, + bearing INT, + speed DOUBLE, + timestamp BIGINT, + PRIMARY KEY (vehicle_id) +); + +-- Realtime: trip updates +CREATE TABLE rt_trip_updates ( + trip_id VARCHAR(50), + stop_id VARCHAR(50), + arrival_time BIGINT, + departure_time BIGINT, + delay INT, + schedule_relationship VARCHAR(20), + PRIMARY KEY (trip_id, stop_id), + FOREIGN KEY (stop_id) REFERENCES stops(stop_id) +); + +-- Realtime: alerts +CREATE TABLE rt_alerts ( + alert_id VARCHAR(50) PRIMARY KEY, + header TEXT, + description TEXT, + cause VARCHAR(50), + effect VARCHAR(50), + timestamp BIGINT +); diff --git a/package-lock.json b/package-lock.json index 2f68396..f432929 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,16 +1,189 @@ { - "name": "project", + "name": "traxer2", "version": "1.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "project", + "name": "traxer2", "version": "1.0.0", "license": "ISC", "dependencies": { "cors": "^2.8.5", - "express": "^5.1.0" + "csv-parse": "^6.1.0", + "express": "^5.2.1", + "gtfs-realtime-bindings": "^1.1.1", + "mysql2": "^3.15.3", + "node-fetch": "^3.3.2", + "parse": "^7.1.2", + "pg": "^8.16.3", + "unzipper": "^0.12.3" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz", + "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.5" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/runtime-corejs3": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.28.4.tgz", + "integrity": "sha512-h7iEYiW4HebClDEhtvFObtPmIvrd1SSfpI9EhOeKk4CtIK/ngBWFpuhCzhdmRKtg71ylcue+9I6dv54XYO1epQ==", + "license": "MIT", + "dependencies": { + "core-js-pure": "^3.43.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz", + "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@jsdoc/salty": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/@jsdoc/salty/-/salty-0.2.9.tgz", + "integrity": "sha512-yYxMVH7Dqw6nO0d5NIV8OQWnitU8k6vXH8NtgqAfIa/IUqRMxRv/NUJJ08VEKbAakwxlgBl5PJdrU0dMPStsnw==", + "license": "Apache-2.0", + "dependencies": { + "lodash": "^4.17.21" + }, + "engines": { + "node": ">=v12.0.0" + } + }, + "node_modules/@protobufjs/aspromise": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", + "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/base64": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", + "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/codegen": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", + "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/eventemitter": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", + "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/fetch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", + "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", + "license": "BSD-3-Clause", + "dependencies": { + "@protobufjs/aspromise": "^1.1.1", + "@protobufjs/inquire": "^1.1.0" + } + }, + "node_modules/@protobufjs/float": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", + "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/inquire": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", + "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/path": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", + "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/pool": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", + "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/utf8": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", + "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==", + "license": "BSD-3-Clause" + }, + "node_modules/@types/linkify-it": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@types/linkify-it/-/linkify-it-5.0.0.tgz", + "integrity": "sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==", + "license": "MIT" + }, + "node_modules/@types/markdown-it": { + "version": "14.1.2", + "resolved": "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-14.1.2.tgz", + "integrity": "sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==", + "license": "MIT", + "peer": true, + "dependencies": { + "@types/linkify-it": "^5", + "@types/mdurl": "^2" + } + }, + "node_modules/@types/mdurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@types/mdurl/-/mdurl-2.0.0.tgz", + "integrity": "sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==", + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "24.10.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.10.1.tgz", + "integrity": "sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" } }, "node_modules/accepts": { @@ -26,24 +199,101 @@ "node": ">= 0.6" } }, + "node_modules/acorn": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "license": "MIT", + "peer": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "license": "Python-2.0" + }, + "node_modules/aws-ssl-profiles": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/aws-ssl-profiles/-/aws-ssl-profiles-1.1.2.tgz", + "integrity": "sha512-NZKeq9AfyQvEeNlN0zSYAaWrmBffJh3IELMZfRpJVWgrpEbtEpnjvzqBPf+mxoI287JohRDoa+/nsfqqiZmF6g==", + "license": "MIT", + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "license": "MIT" + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "license": "MIT" + }, "node_modules/body-parser": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.0.tgz", - "integrity": "sha512-02qvAaxv8tp7fBa/mw1ga98OGm+eCbqzJOKoRt70sLmfEEi+jyBYVTDGfCL/k06/4EMk/z01gCe7HoCH/f2LTg==", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.1.tgz", + "integrity": "sha512-nfDwkulwiZYQIGwxdy0RUmowMhKcFVcYXUU7m4QlKYim1rUtg83xm2yjZ40QjDuc291AJjjeSc9b++AWHSgSHw==", "license": "MIT", "dependencies": { "bytes": "^3.1.2", "content-type": "^1.0.5", - "debug": "^4.4.0", + "debug": "^4.4.3", "http-errors": "^2.0.0", - "iconv-lite": "^0.6.3", + "iconv-lite": "^0.7.0", "on-finished": "^2.4.1", "qs": "^6.14.0", - "raw-body": "^3.0.0", - "type-is": "^2.0.0" + "raw-body": "^3.0.1", + "type-is": "^2.0.1" }, "engines": { "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" } }, "node_modules/bytes": { @@ -84,6 +334,52 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/catharsis": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/catharsis/-/catharsis-0.9.0.tgz", + "integrity": "sha512-prMTQVpcns/tzFgFVkVp6ak6RykZyWb3gu8ckUpd6YkTlacOd3DXGJjIpD4Q6zJirizvaiAjSSHlOsA+6sNh2A==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.15" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, "node_modules/content-disposition": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.0.1.tgz", @@ -124,6 +420,23 @@ "node": ">=6.6.0" } }, + "node_modules/core-js-pure": { + "version": "3.47.0", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.47.0.tgz", + "integrity": "sha512-BcxeDbzUrRnXGYIVAGFtcGQVNpFcUhVjr6W7F8XktvQW2iJP9e66GP6xdKotCRFlrxBvNIBrhwKteRXqMV86Nw==", + "hasInstallScript": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "license": "MIT" + }, "node_modules/cors": { "version": "2.8.5", "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", @@ -137,6 +450,27 @@ "node": ">= 0.10" } }, + "node_modules/crypto-js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.2.0.tgz", + "integrity": "sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==", + "license": "MIT" + }, + "node_modules/csv-parse": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-6.1.0.tgz", + "integrity": "sha512-CEE+jwpgLn+MmtCpVcPtiCZpVtB6Z2OKPTr34pycYYoL7sxdOkXDdQ4lRiw6ioC0q6BLqhc6cKweCVvral8yhw==", + "license": "MIT" + }, + "node_modules/data-uri-to-buffer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", + "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", + "license": "MIT", + "engines": { + "node": ">= 12" + } + }, "node_modules/debug": { "version": "4.4.3", "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", @@ -154,6 +488,21 @@ } } }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "license": "MIT" + }, + "node_modules/denque": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz", + "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==", + "license": "Apache-2.0", + "engines": { + "node": ">=0.10" + } + }, "node_modules/depd": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", @@ -177,6 +526,15 @@ "node": ">= 0.4" } }, + "node_modules/duplexer2": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", + "integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==", + "license": "BSD-3-Clause", + "dependencies": { + "readable-stream": "^2.0.2" + } + }, "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", @@ -192,6 +550,18 @@ "node": ">= 0.8" } }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, "node_modules/es-define-property": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", @@ -228,6 +598,106 @@ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", "license": "MIT" }, + "node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "license": "BSD-2-Clause", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=4.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/escodegen/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/etag": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", @@ -238,18 +708,19 @@ } }, "node_modules/express": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/express/-/express-5.1.0.tgz", - "integrity": "sha512-DT9ck5YIRU+8GYzzU5kT3eHGA5iL+1Zd0EutOmTE9Dtk+Tvuzd23VBU+ec7HPNSTxXYO55gPV/hq4pSBJDjFpA==", + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/express/-/express-5.2.1.tgz", + "integrity": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==", "license": "MIT", "dependencies": { "accepts": "^2.0.0", - "body-parser": "^2.2.0", + "body-parser": "^2.2.1", "content-disposition": "^1.0.0", "content-type": "^1.0.5", "cookie": "^0.7.1", "cookie-signature": "^1.2.1", "debug": "^4.4.0", + "depd": "^2.0.0", "encodeurl": "^2.0.0", "escape-html": "^1.0.3", "etag": "^1.8.1", @@ -279,10 +750,39 @@ "url": "https://opencollective.com/express" } }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "license": "MIT" + }, + "node_modules/fetch-blob": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", + "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "paypal", + "url": "https://paypal.me/jimmywarting" + } + ], + "license": "MIT", + "dependencies": { + "node-domexception": "^1.0.0", + "web-streams-polyfill": "^3.0.3" + }, + "engines": { + "node": "^12.20 || >= 14.13" + } + }, "node_modules/finalhandler": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.0.tgz", - "integrity": "sha512-/t88Ty3d5JWQbWYgaOGCCYfXRwV1+be02WqYYlL6h0lEiUAMPM8o8qKGO01YIkOHzka2up08wvgYD0mDiI+q3Q==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.1.tgz", + "integrity": "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==", "license": "MIT", "dependencies": { "debug": "^4.4.0", @@ -293,7 +793,23 @@ "statuses": "^2.0.1" }, "engines": { - "node": ">= 0.8" + "node": ">= 18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/formdata-polyfill": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", + "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", + "license": "MIT", + "dependencies": { + "fetch-blob": "^3.1.2" + }, + "engines": { + "node": ">=12.20.0" } }, "node_modules/forwarded": { @@ -314,6 +830,26 @@ "node": ">= 0.8" } }, + "node_modules/fs-extra": { + "version": "11.3.2", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.2.tgz", + "integrity": "sha512-Xr9F6z6up6Ws+NjzMCZc6WXg2YFRlrLP9NQDO3VQrWrfiojdhS56TzueT88ze0uBdCTwEIhQ3ptnmKeWGFAe0A==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "license": "ISC" + }, "node_modules/function-bind": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", @@ -323,6 +859,15 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/generate-function": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.3.1.tgz", + "integrity": "sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==", + "license": "MIT", + "dependencies": { + "is-property": "^1.0.2" + } + }, "node_modules/get-intrinsic": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", @@ -360,6 +905,26 @@ "node": ">= 0.4" } }, + "node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/gopd": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", @@ -372,6 +937,30 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "license": "ISC" + }, + "node_modules/gtfs-realtime-bindings": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/gtfs-realtime-bindings/-/gtfs-realtime-bindings-1.1.1.tgz", + "integrity": "sha512-+k8+/MmiBmUUWlASs4CeTkV+Qyz/FgbZxXdg9rDU62XRfJOpRaRe+nKWCGKse965jffVZ0tIu1K+R7hRvjSLfQ==", + "dependencies": { + "protobufjs": "^7.1.2", + "protobufjs-cli": "^1.0.2" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, "node_modules/has-symbols": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", @@ -397,40 +986,56 @@ } }, "node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==", "license": "MIT", "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" + "depd": "~2.0.0", + "inherits": "~2.0.4", + "setprototypeof": "~1.2.0", + "statuses": "~2.0.2", + "toidentifier": "~1.0.1" }, "engines": { "node": ">= 0.8" - } - }, - "node_modules/http-errors/node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "license": "MIT", - "engines": { - "node": ">= 0.8" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, "node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.0.tgz", + "integrity": "sha512-cf6L2Ds3h57VVmkZe+Pn+5APsT7FpqJtEhhieDCvrE2MK5Qk9MyffgQyuxQTm6BChfeZNtcOLHp9IcWRVcIcBQ==", "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" }, "engines": { "node": ">=0.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/idb-keyval": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/idb-keyval/-/idb-keyval-6.2.2.tgz", + "integrity": "sha512-yjD9nARJ/jb1g+CvD0tlhUHOrJ9Sy0P8T9MF3YaLlHnSRpwPfpTX0XIvpmw3gAJUmEu3FiICLBDPXVwyEvrleg==", + "license": "Apache-2.0" + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" } }, "node_modules/inherits": { @@ -454,6 +1059,175 @@ "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==", "license": "MIT" }, + "node_modules/is-property": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", + "integrity": "sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g==", + "license": "MIT" + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "license": "MIT" + }, + "node_modules/js2xmlparser": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-4.0.2.tgz", + "integrity": "sha512-6n4D8gLlLf1n5mNLQPRfViYzu9RATblzPEtm1SthMX1Pjao0r9YI9nw7ZIfRxQMERS87mcswrg+r/OYrPRX6jA==", + "license": "Apache-2.0", + "dependencies": { + "xmlcreate": "^2.0.4" + } + }, + "node_modules/jsdoc": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/jsdoc/-/jsdoc-4.0.5.tgz", + "integrity": "sha512-P4C6MWP9yIlMiK8nwoZvxN84vb6MsnXcHuy7XzVOvQoCizWX5JFCBsWIIWKXBltpoRZXddUOVQmCTOZt9yDj9g==", + "license": "Apache-2.0", + "dependencies": { + "@babel/parser": "^7.20.15", + "@jsdoc/salty": "^0.2.1", + "@types/markdown-it": "^14.1.1", + "bluebird": "^3.7.2", + "catharsis": "^0.9.0", + "escape-string-regexp": "^2.0.0", + "js2xmlparser": "^4.0.2", + "klaw": "^3.0.0", + "markdown-it": "^14.1.0", + "markdown-it-anchor": "^8.6.7", + "marked": "^4.0.10", + "mkdirp": "^1.0.4", + "requizzle": "^0.2.3", + "strip-json-comments": "^3.1.0", + "underscore": "~1.13.2" + }, + "bin": { + "jsdoc": "jsdoc.js" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/jsonfile": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.0.tgz", + "integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/klaw": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/klaw/-/klaw-3.0.0.tgz", + "integrity": "sha512-0Fo5oir+O9jnXu5EefYbVK+mHMBeEVEy2cmctR1O1NECcCkPRreJKrS6Qt/j3KC2C148Dfo9i3pCmCMsdqGr0g==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.9" + } + }, + "node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "license": "MIT", + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/linkify-it": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.0.tgz", + "integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==", + "license": "MIT", + "dependencies": { + "uc.micro": "^2.0.0" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "license": "MIT" + }, + "node_modules/long": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/long/-/long-5.3.2.tgz", + "integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==", + "license": "Apache-2.0" + }, + "node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/lru.min": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/lru.min/-/lru.min-1.1.3.tgz", + "integrity": "sha512-Lkk/vx6ak3rYkRR0Nhu4lFUT2VDnQSxBe8Hbl7f36358p6ow8Bnvr8lrLt98H8J1aGxfhbX4Fs5tYg2+FTwr5Q==", + "license": "MIT", + "engines": { + "bun": ">=1.0.0", + "deno": ">=1.30.0", + "node": ">=8.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wellwelwel" + } + }, + "node_modules/markdown-it": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-14.1.0.tgz", + "integrity": "sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==", + "license": "MIT", + "peer": true, + "dependencies": { + "argparse": "^2.0.1", + "entities": "^4.4.0", + "linkify-it": "^5.0.0", + "mdurl": "^2.0.0", + "punycode.js": "^2.3.1", + "uc.micro": "^2.1.0" + }, + "bin": { + "markdown-it": "bin/markdown-it.mjs" + } + }, + "node_modules/markdown-it-anchor": { + "version": "8.6.7", + "resolved": "https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-8.6.7.tgz", + "integrity": "sha512-FlCHFwNnutLgVTflOYHPW2pPcl2AACqVzExlkGQNsi4CJgqOHN7YTgDd4LuhgN1BFO3TS0vLAruV1Td6dwWPJA==", + "license": "Unlicense", + "peerDependencies": { + "@types/markdown-it": "*", + "markdown-it": "*" + } + }, + "node_modules/marked": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/marked/-/marked-4.3.0.tgz", + "integrity": "sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==", + "license": "MIT", + "bin": { + "marked": "bin/marked.js" + }, + "engines": { + "node": ">= 12" + } + }, "node_modules/math-intrinsics": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", @@ -463,6 +1237,12 @@ "node": ">= 0.4" } }, + "node_modules/mdurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz", + "integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==", + "license": "MIT" + }, "node_modules/media-typer": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz", @@ -494,15 +1274,52 @@ } }, "node_modules/mime-types": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.1.tgz", - "integrity": "sha512-xRc4oEhT6eaBpU1XF7AjpOFD+xQmXNB5OVKwp4tqCuBpHLS/ZbBDrc07mYTDqVMg6PfxUjjNp85O6Cd2Z/5HWA==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz", + "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==", "license": "MIT", "dependencies": { "mime-db": "^1.54.0" }, "engines": { - "node": ">= 0.6" + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" } }, "node_modules/ms": { @@ -511,6 +1328,38 @@ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "license": "MIT" }, + "node_modules/mysql2": { + "version": "3.15.3", + "resolved": "https://registry.npmjs.org/mysql2/-/mysql2-3.15.3.tgz", + "integrity": "sha512-FBrGau0IXmuqg4haEZRBfHNWB5mUARw6hNwPDXXGg0XzVJ50mr/9hb267lvpVMnhZ1FON3qNd4Xfcez1rbFwSg==", + "license": "MIT", + "dependencies": { + "aws-ssl-profiles": "^1.1.1", + "denque": "^2.1.0", + "generate-function": "^2.3.1", + "iconv-lite": "^0.7.0", + "long": "^5.2.1", + "lru.min": "^1.0.0", + "named-placeholders": "^1.1.3", + "seq-queue": "^0.0.5", + "sqlstring": "^2.3.2" + }, + "engines": { + "node": ">= 8.0" + } + }, + "node_modules/named-placeholders": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/named-placeholders/-/named-placeholders-1.1.3.tgz", + "integrity": "sha512-eLoBxg6wE/rZkJPhU/xRX1WTpkFEwDJEN96oxFrTsqBdbT5ec295Q+CoHrL9IT0DipqKhmGcaZmwOt8OON5x1w==", + "license": "MIT", + "dependencies": { + "lru-cache": "^7.14.1" + }, + "engines": { + "node": ">=12.0.0" + } + }, "node_modules/negotiator": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz", @@ -520,6 +1369,50 @@ "node": ">= 0.6" } }, + "node_modules/node-domexception": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", + "deprecated": "Use your platform's native DOMException instead", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "github", + "url": "https://paypal.me/jimmywarting" + } + ], + "license": "MIT", + "engines": { + "node": ">=10.5.0" + } + }, + "node_modules/node-fetch": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", + "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", + "license": "MIT", + "dependencies": { + "data-uri-to-buffer": "^4.0.0", + "fetch-blob": "^3.1.4", + "formdata-polyfill": "^4.0.10" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/node-fetch" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "license": "MIT" + }, "node_modules/object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", @@ -562,6 +1455,39 @@ "wrappy": "1" } }, + "node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "license": "MIT", + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/parse": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/parse/-/parse-7.1.2.tgz", + "integrity": "sha512-PXcPZDElBni06WPMxg0e6XmvgYBu3v39pRezZDbsomi8y9k1uNEDO/uICIqndw8jdES2ZfVpHp0TQoar2SObHQ==", + "license": "Apache-2.0", + "dependencies": { + "@babel/runtime-corejs3": "7.28.4", + "crypto-js": "4.2.0", + "idb-keyval": "6.2.2", + "react-native-crypto-js": "1.0.0", + "ws": "8.18.3" + }, + "engines": { + "node": "18 || 19 || 20 || 22 || 24" + } + }, "node_modules/parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", @@ -581,6 +1507,202 @@ "url": "https://opencollective.com/express" } }, + "node_modules/pg": { + "version": "8.16.3", + "resolved": "https://registry.npmjs.org/pg/-/pg-8.16.3.tgz", + "integrity": "sha512-enxc1h0jA/aq5oSDMvqyW3q89ra6XIIDZgCX9vkMrnz5DFTw/Ny3Li2lFQ+pt3L6MCgm/5o2o8HW9hiJji+xvw==", + "license": "MIT", + "peer": true, + "dependencies": { + "pg-connection-string": "^2.9.1", + "pg-pool": "^3.10.1", + "pg-protocol": "^1.10.3", + "pg-types": "2.2.0", + "pgpass": "1.0.5" + }, + "engines": { + "node": ">= 16.0.0" + }, + "optionalDependencies": { + "pg-cloudflare": "^1.2.7" + }, + "peerDependencies": { + "pg-native": ">=3.0.1" + }, + "peerDependenciesMeta": { + "pg-native": { + "optional": true + } + } + }, + "node_modules/pg-cloudflare": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/pg-cloudflare/-/pg-cloudflare-1.2.7.tgz", + "integrity": "sha512-YgCtzMH0ptvZJslLM1ffsY4EuGaU0cx4XSdXLRFae8bPP4dS5xL1tNB3k2o/N64cHJpwU7dxKli/nZ2lUa5fLg==", + "license": "MIT", + "optional": true + }, + "node_modules/pg-connection-string": { + "version": "2.9.1", + "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.9.1.tgz", + "integrity": "sha512-nkc6NpDcvPVpZXxrreI/FOtX3XemeLl8E0qFr6F2Lrm/I8WOnaWNhIPK2Z7OHpw7gh5XJThi6j6ppgNoaT1w4w==", + "license": "MIT" + }, + "node_modules/pg-int8": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz", + "integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==", + "license": "ISC", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/pg-pool": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/pg-pool/-/pg-pool-3.10.1.tgz", + "integrity": "sha512-Tu8jMlcX+9d8+QVzKIvM/uJtp07PKr82IUOYEphaWcoBhIYkoHpLXN3qO59nAI11ripznDsEzEv8nUxBVWajGg==", + "license": "MIT", + "peerDependencies": { + "pg": ">=8.0" + } + }, + "node_modules/pg-protocol": { + "version": "1.10.3", + "resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.10.3.tgz", + "integrity": "sha512-6DIBgBQaTKDJyxnXaLiLR8wBpQQcGWuAESkRBX/t6OwA8YsqP+iVSiond2EDy6Y/dsGk8rh/jtax3js5NeV7JQ==", + "license": "MIT" + }, + "node_modules/pg-types": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz", + "integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==", + "license": "MIT", + "dependencies": { + "pg-int8": "1.0.1", + "postgres-array": "~2.0.0", + "postgres-bytea": "~1.0.0", + "postgres-date": "~1.0.4", + "postgres-interval": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pgpass": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/pgpass/-/pgpass-1.0.5.tgz", + "integrity": "sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==", + "license": "MIT", + "dependencies": { + "split2": "^4.1.0" + } + }, + "node_modules/postgres-array": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz", + "integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/postgres-bytea": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz", + "integrity": "sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postgres-date": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz", + "integrity": "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postgres-interval": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz", + "integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==", + "license": "MIT", + "dependencies": { + "xtend": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "license": "MIT" + }, + "node_modules/protobufjs": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.5.4.tgz", + "integrity": "sha512-CvexbZtbov6jW2eXAvLukXjXUW1TzFaivC46BpWc/3BpcCysb5Vffu+B3XHMm8lVEuy2Mm4XGex8hBSg1yapPg==", + "hasInstallScript": true, + "license": "BSD-3-Clause", + "peer": true, + "dependencies": { + "@protobufjs/aspromise": "^1.1.2", + "@protobufjs/base64": "^1.1.2", + "@protobufjs/codegen": "^2.0.4", + "@protobufjs/eventemitter": "^1.1.0", + "@protobufjs/fetch": "^1.1.0", + "@protobufjs/float": "^1.0.2", + "@protobufjs/inquire": "^1.1.0", + "@protobufjs/path": "^1.1.2", + "@protobufjs/pool": "^1.1.0", + "@protobufjs/utf8": "^1.1.0", + "@types/node": ">=13.7.0", + "long": "^5.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/protobufjs-cli": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/protobufjs-cli/-/protobufjs-cli-1.1.3.tgz", + "integrity": "sha512-MqD10lqF+FMsOayFiNOdOGNlXc4iKDCf0ZQPkPR+gizYh9gqUeGTWulABUCdI+N67w5RfJ6xhgX4J8pa8qmMXQ==", + "license": "BSD-3-Clause", + "dependencies": { + "chalk": "^4.0.0", + "escodegen": "^1.13.0", + "espree": "^9.0.0", + "estraverse": "^5.1.0", + "glob": "^8.0.0", + "jsdoc": "^4.0.0", + "minimist": "^1.2.0", + "semver": "^7.1.2", + "tmp": "^0.2.1", + "uglify-js": "^3.7.7" + }, + "bin": { + "pbjs": "bin/pbjs", + "pbts": "bin/pbts" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "protobufjs": "^7.0.0" + } + }, "node_modules/proxy-addr": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", @@ -594,6 +1716,15 @@ "node": ">= 0.10" } }, + "node_modules/punycode.js": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode.js/-/punycode.js-2.3.1.tgz", + "integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/qs": { "version": "6.14.0", "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.0.tgz", @@ -619,34 +1750,48 @@ } }, "node_modules/raw-body": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.1.tgz", - "integrity": "sha512-9G8cA+tuMS75+6G/TzW8OtLzmBDMo8p1JRxN5AZ+LAp8uxGA8V8GZm4GQ4/N5QNQEnLmg6SS7wyuSmbKepiKqA==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.2.tgz", + "integrity": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==", "license": "MIT", "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.7.0", - "unpipe": "1.0.0" + "bytes": "~3.1.2", + "http-errors": "~2.0.1", + "iconv-lite": "~0.7.0", + "unpipe": "~1.0.0" }, "engines": { "node": ">= 0.10" } }, - "node_modules/raw-body/node_modules/iconv-lite": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.0.tgz", - "integrity": "sha512-cf6L2Ds3h57VVmkZe+Pn+5APsT7FpqJtEhhieDCvrE2MK5Qk9MyffgQyuxQTm6BChfeZNtcOLHp9IcWRVcIcBQ==", + "node_modules/react-native-crypto-js": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/react-native-crypto-js/-/react-native-crypto-js-1.0.0.tgz", + "integrity": "sha512-FNbLuG/HAdapQoybeZSoes1PWdOj0w242gb+e1R0hicf3Gyj/Mf8M9NaED2AnXVOX01b2FXomwUiw1xP1K+8sA==", + "license": "MIT" + }, + "node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", "license": "MIT", "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/express" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/requizzle": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/requizzle/-/requizzle-0.2.4.tgz", + "integrity": "sha512-JRrFk1D4OQ4SqovXOgdav+K8EAhSB/LJZqCz8tbX0KObcdeM15Ss59ozWMBWmmINMagCwmqn4ZNryUGpBsl6Jw==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.21" } }, "node_modules/router": { @@ -665,12 +1810,30 @@ "node": ">= 18" } }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "license": "MIT" + }, "node_modules/safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", "license": "MIT" }, + "node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/send": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/send/-/send-1.2.0.tgz", @@ -693,6 +1856,11 @@ "node": ">= 18" } }, + "node_modules/seq-queue": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/seq-queue/-/seq-queue-0.0.5.tgz", + "integrity": "sha512-hr3Wtp/GZIc/6DAGPDcV4/9WoZhjrkXsi5B/07QgX8tsdc6ilr7BFM6PM6rbdAX1kFSDYeZGLipIZZKyQP0O5Q==" + }, "node_modules/serve-static": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.0.tgz", @@ -786,6 +1954,34 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split2": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", + "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", + "license": "ISC", + "engines": { + "node": ">= 10.x" + } + }, + "node_modules/sqlstring": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/sqlstring/-/sqlstring-2.3.3.tgz", + "integrity": "sha512-qC9iz2FlN7DQl3+wjwn3802RTyjCx7sDvfQEXchwa6CWOx07/WVfh91gBmQ9fahw8snwGEWU3xGzOt4tFyHLxg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, "node_modules/statuses": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz", @@ -795,6 +1991,48 @@ "node": ">= 0.8" } }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tmp": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.5.tgz", + "integrity": "sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==", + "license": "MIT", + "engines": { + "node": ">=14.14" + } + }, "node_modules/toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", @@ -804,6 +2042,18 @@ "node": ">=0.6" } }, + "node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "license": "MIT", + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, "node_modules/type-is": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.1.tgz", @@ -818,6 +2068,45 @@ "node": ">= 0.6" } }, + "node_modules/uc.micro": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz", + "integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==", + "license": "MIT" + }, + "node_modules/uglify-js": { + "version": "3.19.3", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.3.tgz", + "integrity": "sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==", + "license": "BSD-2-Clause", + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/underscore": { + "version": "1.13.7", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.7.tgz", + "integrity": "sha512-GMXzWtsc57XAtguZgaQViUOzs0KTkk8ojr3/xAxXLITqf/3EMwxC0inyETfDFjH/Krbhuep0HNbbjI9i/q3F3g==", + "license": "MIT" + }, + "node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "license": "MIT" + }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, "node_modules/unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", @@ -827,6 +2116,25 @@ "node": ">= 0.8" } }, + "node_modules/unzipper": { + "version": "0.12.3", + "resolved": "https://registry.npmjs.org/unzipper/-/unzipper-0.12.3.tgz", + "integrity": "sha512-PZ8hTS+AqcGxsaQntl3IRBw65QrBI6lxzqDEL7IAo/XCEqRTKGfOX56Vea5TH9SZczRVxuzk1re04z/YjuYCJA==", + "license": "MIT", + "dependencies": { + "bluebird": "~3.7.2", + "duplexer2": "~0.1.4", + "fs-extra": "^11.2.0", + "graceful-fs": "^4.2.2", + "node-int64": "^0.4.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "license": "MIT" + }, "node_modules/vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", @@ -836,11 +2144,65 @@ "node": ">= 0.8" } }, + "node_modules/web-streams-polyfill": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz", + "integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "license": "ISC" + }, + "node_modules/ws": { + "version": "8.18.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz", + "integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xmlcreate": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/xmlcreate/-/xmlcreate-2.0.4.tgz", + "integrity": "sha512-nquOebG4sngPmGPICTS5EnxqhKbCmz5Ox5hsszI2T6U5qdrJizBc+0ilYSEjTSzU0yZcmvppztXe/5Al5fUwdg==", + "license": "Apache-2.0" + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "license": "MIT", + "engines": { + "node": ">=0.4" + } } } } diff --git a/package.json b/package.json index 3a017ee..cf27eb8 100644 --- a/package.json +++ b/package.json @@ -1,22 +1,24 @@ { - "name": "project", + "name": "traxer2", "version": "1.0.0", "description": "", - "main": "app.js", + "main": "index.js", "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", - "start": "node start.js" - }, - "repository": { - "type": "git", - "url": "https://git.nathanspackman.com/PRO150-Group/Project" + "test": "echo \"Error: no test specified\" && exit 1" }, "keywords": [], "author": "", "license": "ISC", - "type": "module", + "type": "commonjs", "dependencies": { "cors": "^2.8.5", - "express": "^5.1.0" + "csv-parse": "^6.1.0", + "express": "^5.2.1", + "gtfs-realtime-bindings": "^1.1.1", + "mysql2": "^3.15.3", + "node-fetch": "^3.3.2", + "parse": "^7.1.2", + "pg": "^8.16.3", + "unzipper": "^0.12.3" } } diff --git a/public/index.html b/public/index.html index d9ce6b5..d4943aa 100644 --- a/public/index.html +++ b/public/index.html @@ -1,24 +1,39 @@ - - - - Traxer - - - - - -
- - - - + + + + Traxer + + + + + + +
+
+ +
+
+ + + Loading... +
+ +
+
+ + + + + + \ No newline at end of file diff --git a/public/index.js b/public/index.js new file mode 100644 index 0000000..c6b5e75 --- /dev/null +++ b/public/index.js @@ -0,0 +1,388 @@ +const map = L.map("map").setView([40.7608, -111.8910], 12); + +L.tileLayer("https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", { + attribution: '© OpenStreetMap contributors' +}).addTo(map); + + + +const trainIcon = L.divIcon({ + html: '🚂', + className: "train-icon", + iconSize: [30, 30], + iconAnchor: [15, 15] +}); + +const busIcon = L.divIcon({ + html: '🚌', + className: "train-icon", + iconSize: [28, 28], + iconAnchor: [14, 14] +}); + +const vehicleMarkers = L.layerGroup().addTo(map); +const routeShapes = L.layerGroup().addTo(map); +const stopMarkers = L.layerGroup().addTo(map); + + +const API = "http://localhost:1001/api"; +const vehicleMarkersMap = {}; + +let stopsVisible = true; +let currentRoute = ""; + +async function loadStops(routeId = null) { + stopMarkers.clearLayers(); + if (!stopsVisible) return; + + try { + let url = `${API}/stop`; + if (routeId) url = `${API}/stop/${routeId}`; + + const res = await fetch(url); + const stops = await res.json(); + + stops.forEach(stop => { + if (!stop.stop_lat || !stop.stop_lon) return; + + const wheelchair = (stop.wheelchair_boarding === "1" || stop.wheelchair_boarding === 1) ? " ♿" : ""; + + const marker = L.circleMarker([stop.stop_lat, stop.stop_lon], { + radius: 6, + color: "#0077ff", + fillColor: "#0077ff", + fillOpacity: 0.8 + }) + .bindPopup(`${stop.stop_name}${wheelchair}
ID: ${stop.stop_desc || stop.stop_id}`) + .addTo(stopMarkers); + + marker.on('click', () => showStopSchedule(stop.stop_id, stop.stop_name)); + }); + } catch (err) { + console.error("Error loading stops:", err); + } +} + +document.getElementById("toggleStops").addEventListener("click", () => { + stopsVisible = !stopsVisible; + if (stopsVisible) { + document.getElementById("toggleStops").textContent = "Hide Stops"; + // Reload current stops (all or just the selected route) + if (currentRoute === "") { + loadStops(); + } else { + loadStops(currentRoute); + } + } else { + document.getElementById("toggleStops").textContent = "Show Stops"; + stopMarkers.clearLayers(); + } +}); + +async function showStopSchedule(stopId, stopName) { + const scheduleDiv = document.getElementById("vehicleSchedule"); + scheduleDiv.innerHTML = "Loading stop schedule..."; + + try { + const res = await fetch(`${API}/schedule/?station=${stopId}`); + const data = await res.json(); + + if (!data || data.length === 0) { + scheduleDiv.innerHTML = `

No upcoming arrivals for ${stopName}

`; + return; + } + + const now = new Date(); + const today = new Date(now.getFullYear(), now.getMonth(), now.getDate()); // midnight today + + // Process and filter valid arrivals + const upcoming = data + .map(item => { + const arrivalRaw = item.stopTime?.arrival_time?.trim(); + if (!arrivalRaw || !item.trip || !item.route) return null; // skip invalid + + let [hours, minutes, seconds] = arrivalRaw.split(":").map(Number); + let arrivalDate = new Date(today); + if (hours >= 24) { + hours -= 24; + arrivalDate.setDate(arrivalDate.getDate() + 1); + } + arrivalDate.setHours(hours, minutes, seconds, 0); + + return { ...item, arrivalDate }; + }) + .filter(item => item && item.arrivalDate > now) // remove past or invalid + .sort((a, b) => a.arrivalDate - b.arrivalDate); + + // Deduplicate by trip_id + arrival_time + const seen = new Set(); + const uniqueUpcoming = upcoming.filter(item => { + const key = `${item.trip.trip_id}_${item.arrivalDate.getTime()}`; + if (seen.has(key)) return false; + seen.add(key); + return true; + }); + + if (uniqueUpcoming.length === 0) { + scheduleDiv.innerHTML = `

No upcoming arrivals for ${stopName}

`; + return; + } + + // Build table + let html = `

Upcoming at ${stopName}

`; + html += ` + + + + + + + + `; + + uniqueUpcoming.forEach(item => { + const { stopTime, trip, route, arrivalDate } = item; + const routeNum = route?.route_short_name || route?.route_id || "—"; + const headsign = trip?.trip_headsign || "—"; + + const minutesUntil = Math.round((arrivalDate - now) / 60000); + const displayTime = arrivalDate.toLocaleTimeString([], { hour: '2-digit', minute: '2-digit' }); + + const timeDisplay = minutesUntil <= 30 + ? `${displayTime} (${minutesUntil === 0 ? "Due" : minutesUntil + " min"})` + : displayTime; + + const rowColor = route?.route_color && route.route_color !== "000000" + ? `#${route.route_color}` + : "#666"; + + html += ` + + + + `; + }); + + html += `
RouteDestinationArrival
+ ${routeNum} + ${headsign}${timeDisplay}
`; + html += ` + Updated ${now.toLocaleTimeString()} + `; + + scheduleDiv.innerHTML = html; + + } catch (err) { + console.error("Error fetching stop schedule:", err); + scheduleDiv.innerHTML = "

Error loading schedule.

"; + } +} + + +function getContrastColor(hex) { + if (!hex || hex.length < 6) return "#ffffff"; + const r = parseInt(hex.substr(0, 2), 16); + const g = parseInt(hex.substr(2, 2), 16); + const b = parseInt(hex.substr(4, 2), 16); + const luminance = (0.299 * r + 0.587 * g + 0.114 * b) / 255; + return luminance > 0.5 ? "#000000" : "#ffffff"; +} + +async function updateVehicles() { + document.getElementById("status").textContent = "Updating..."; + + try { + let trains = []; + let buses = []; + + if (!currentRoute || ["701", "703", "704", "720", "750"].includes(currentRoute)) { + const trainRes = currentRoute + ? await fetch(`${API}/train/${currentRoute}`) + : await fetch(`${API}/train`); + trains = await trainRes.json(); + } + + if (!currentRoute) { + const busRes = await fetch(`${API}/bus`); + buses = await busRes.json(); + } + + const allVehicles = [...trains, ...buses]; + const seenVehicleIds = new Set(); + + allVehicles.forEach(item => { + const v = item.vehicle; + if (!v?.position?.latitude) return; + + const id = v.vehicle.id; + seenVehicleIds.add(id); + + const lat = v.position.latitude; + const lon = v.position.longitude; + const route = item.route?.route_short_name || "???"; + const isTrain = trains.includes(item); + const icon = isTrain ? trainIcon : busIcon; + + const speed = v.position.speed ? (v.position.speed * 2.237).toFixed(0) + " mph" : "Stopped"; + const popup = ` + ${item.route?.route_long_name || route + " Service"}
+ Vehicle ID: ${id}
+ Route: ${route}
+ Speed: ${speed}
+ Updated: ${new Date(v.timestamp * 1000).toLocaleTimeString()} + `; + + if (vehicleMarkersMap[id]) { + vehicleMarkersMap[id].setLatLng([lat, lon]); + vehicleMarkersMap[id].setPopupContent(popup); + } else { + const marker = L.marker([lat, lon], { + icon: icon, + rotationAngle: v.position.bearing || 0 + }).bindPopup(popup) + .addTo(vehicleMarkers); + vehicleMarkersMap[id] = marker; + } + }); + Object.keys(vehicleMarkersMap).forEach(id => { + if (!seenVehicleIds.has(id)) { + vehicleMarkers.removeLayer(vehicleMarkersMap[id]); + delete vehicleMarkersMap[id]; + } + }); + document.getElementById("status").textContent = `${allVehicles.length} vehicles • ${new Date().toLocaleTimeString()}`; + } catch (err) { + console.error("Update failed:", err); + document.getElementById("status").textContent = "Error"; + } +} +async function loadRouteShape(routeId) { + if (!routeId) { + routeShapes.clearLayers(); + return; + } + try { + const res = await fetch(`${API}/shape/${routeId}`); + const shapes = await res.json(); + routeShapes.clearLayers(); + const res2 = await fetch(`${API}/routes`); + const routes = await res2.json(); + const route = routes.filter(r => r.route_short_name == routeId); + console.log(route[0]) + const routeHexColor = `#${route[0].route_color}`; + + shapes.forEach(shape => { + const points = shape.points.map(p => [p.lat, p.lon]); + L.polyline(points, { color: routeHexColor, weight: 5, opacity: 0.7 }).addTo(routeShapes); + }); + if (shapes.length > 0) { + const bounds = L.latLngBounds(shapes[0].points.map(p => [p.lat, p.lon])); + map.fitBounds(bounds, { padding: [50, 50] }); + } + } catch (e) { console.error("Shape load error:", e); } +} + +document.getElementById("routeSelect").addEventListener("change", async (e) => { + currentRoute = e.target.value; + console.log(currentRoute == "") + if (currentRoute === "") { + loadAllRoutes(); + loadStops(); + } + else { + loadRouteShape(currentRoute); + loadStops(currentRoute); + } + updateVehicles(); + +}); + +function delay(ms) { + return new Promise(resolve => setTimeout(resolve, ms)); +} + +document.getElementById("refresh").addEventListener("click", updateVehicles); + +async function loadAllRoutes() { + try { + const res = await fetch(`${API}/routes`); + const routes = await res.json(); + + routeShapes.clearLayers(); + + for (const route of routes) { + const routeId = route.route_short_name; + const routeHexColor = route.route_color ? `#${route.route_color}` : "#888"; + + const shapeRes = await fetch(`${API}/shape/${routeId}`); + const shapes = await shapeRes.json(); + + shapes.forEach(shape => { + const points = shape.points.map(p => [p.lat, p.lon]); + L.polyline(points, { + color: routeHexColor, + weight: 4, + opacity: 0.6 + }).addTo(routeShapes); + }); + //await delay(200); + } + + const allPoints = []; + routeShapes.eachLayer(layer => { + allPoints.push(...layer.getLatLngs()); + }); + } catch (e) { + console.error("Error loading all routes:", e); + } +} + +async function showVehicleSchedule(vehicleId) { + const scheduleDiv = document.getElementById("vehicleSchedule"); + scheduleDiv.innerHTML = "Loading schedule..."; + + try { + const res = await fetch(`${API}/schedule/?vehicle=${vehicleId}`); + const schedule = await res.json(); + + if (!schedule.length) { + scheduleDiv.innerHTML = "

No schedule available.

"; + return; + } + + let html = ` +

Schedule for Vehicle ${vehicleId}

+ + + + + + + + + `; + + schedule.forEach(stop => { + const time = new Date(stop.arrival_time * 1000).toLocaleTimeString(); + html += ``; + }); + + html += `
StopArrival Time
${stop.stop_name}${time}
`; + scheduleDiv.innerHTML = html; + + } catch (err) { + console.error("Error fetching schedule:", err); + scheduleDiv.innerHTML = "

Error loading schedule.

"; + } +} + +loadAllRoutes() + .then(() => loadStops()) + .then(() => { + updateVehicles(); + setInterval(updateVehicles, 10000); // Update every 10 seconds + }) + .catch(err => { + console.error("Init failed:", err); + document.getElementById("status").textContent = "Failed to initialize"; + }); diff --git a/public/style.css b/public/style.css new file mode 100644 index 0000000..27db726 --- /dev/null +++ b/public/style.css @@ -0,0 +1,63 @@ +body { + margin: 0; + font-family: system-ui, sans-serif; +} + +#map { + width: 100vw; + height: 80vh; +} + +.controls { + position: absolute; + top: 10px; + left: 50%; + transform: translateX(-50%); + background: rgba(255, 255, 255, 0.95); + padding: 12px 20px; + border-radius: 12px; + box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); + z-index: 1000; + text-align: center; + display: flex; + gap: 12px; + align-items: center; + flex-wrap: wrap; + justify-content: center; +} + +select, +button { + padding: 10px; + font-size: 15px; + border-radius: 8px; + border: 1px solid #ccc; +} + +button { + background: #0066cc; + color: white; + border: none; + cursor: pointer; +} + +button:hover { + background: #0052a3; +} + +.status { + font-weight: bold; + color: #0066cc; +} + +.legend { + position: absolute; + top: 10px; + right: 10px; + background: white; + padding: 12px; + border-radius: 8px; + box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); + z-index: 1000; + font-size: 13px; +} \ No newline at end of file diff --git a/scripts/validateData.js b/scripts/validateData.js deleted file mode 100644 index e69de29..0000000 diff --git a/server.js b/server.js new file mode 100644 index 0000000..151eca2 --- /dev/null +++ b/server.js @@ -0,0 +1,93 @@ +const express = require('express') +const path = require('path'); +const app = express() +const gtfsRealtime = require("./tools/gtfsData") +app.use(express.static('public')) +app.use((req, res, next) => { + res.header('Access-Control-Allow-Origin', '*'); // or 'http://127.0.0.1:1001' for security + res.header('Access-Control-Allow-Headers', 'Origin, X-Requested-With, Content-Type, Accept'); + next(); +}); +const port = 1001 + +app.get('/', (req, res) => { + res.sendFile(path.join(__dirname, 'public', 'index.html')); +}) + +app.get('/api/', (req, res) => { + res.json({ version: "0.0.1", status: "healthy" }) +}) + +app.get('/api/train/', async (req, res) => { + res.json(await gtfsRealtime.getTrains()) +}) + +app.get('/api/train/:routeId', async (req, res) => { + const routeId = req.params.routeId; + res.json(await gtfsRealtime.getTrainsByRoute(routeId)) +}) + +app.get('/api/bus/', async (req, res) => { + res.json(await gtfsRealtime.getBuses()) +}) + +app.get('/api/bus/:routeId', async (req, res) => { + const routeId = req.params.routeId; + res.json(await gtfsRealtime.getBusesByRoute(routeId)) +}) + +app.get('/api/alert', async (req, res) => { + res.json(await gtfsRealtime.getAlerts()) +}) + +app.get('/api/alert/:routeId', async (req, res) => { + const routeId = req.params.routeId; + res.json(await gtfsRealtime.getAlertsByRoute(routeId)) +}) + +app.get('/api/schedule', async (req, res) => { + const { route, station } = req.query; + try { + let result; + if (route) { + result = await gtfsRealtime.getScheduleByRoute(route); + } else if (station) { + result = await gtfsRealtime.getScheduleByStationId(station); + } else { + return res.status(400).json({ error: "Please provide route, or station query parameter" }); + } + + if (!result || (Array.isArray(result) && result.length === 0)) { + return res.status(404).json({ error: "No schedule found" }); + } + + res.json(result); + } catch (err) { + console.error(err); + + res.status(500).json({ error: "Internal server error" }); + } +}); + +app.get('/api/routes', async (req, res) => { + res.json(await gtfsRealtime.getRoutes()) +}) + +app.get('/api/shape/:routeId', async (req, res) => { + const routeId = req.params.routeId; + res.json(await gtfsRealtime.getShapeByRoute(routeId)) +}) + +app.get('/api/stop', async (req, res) => { + res.json(await gtfsRealtime.getStops()) +}) + +app.get('/api/stop/:routeId', async (req, res) => { + const routeId = req.params.routeId; + res.json(await gtfsRealtime.getStopsByRoute(routeId)) +}) + + +app.listen(port, () => { + console.log(`Example app listening on port ${port}`) +}) diff --git a/src/dal/data/routes.json b/src/dal/data/routes.json deleted file mode 100644 index 39da46c..0000000 --- a/src/dal/data/routes.json +++ /dev/null @@ -1,27 +0,0 @@ -[ - { - "route_id": "701", - "start_location": "Draper City Center", - "end_location": "Salt Lake Central" - }, - { - "route_id": "703", - "start_location": "Airport Station", - "end_location": "West Valley Central Station" - }, - { - "route_id": "704", - "start_location": "Daybreak Parkway Station", - "end_location": "U. Of U. Medical Center Station" - }, - { - "route_id": "720", - "start_location": "Provo Central Station", - "end_location": "Ogden Station" - }, - { - "route_id": "750", - "start_location": "Fairmont Station", - "end_location": "Central Pointe Station" - } -] diff --git a/src/dal/data/stations.json b/src/dal/data/stations.json deleted file mode 100644 index 2e65832..0000000 --- a/src/dal/data/stations.json +++ /dev/null @@ -1,1494 +0,0 @@ -[ - { - "701": [ - { - "stop_id": "18376", - "stop_code": "TX126073", - "stop_name": "Gallivan Plaza Station", - "stop_desc": "255 S Main St & 300 S", - "stop_lat": "40.763087", - "stop_lon": "-111.891102" - }, - { - "stop_id": "18385", - "stop_code": "TX128001", - "stop_name": "City Center Station", - "stop_desc": "55 S Main St & South Temple", - "stop_lat": "40.768217", - "stop_lon": "-111.891081" - }, - { - "stop_id": "18386", - "stop_code": "TX128002", - "stop_name": "City Center Station", - "stop_desc": "55 S Main St & South Temple", - "stop_lat": "40.767452", - "stop_lon": "-111.891101" - }, - { - "stop_id": "18387", - "stop_code": "TX136033", - "stop_name": "Millcreek Station", - "stop_desc": "210 W 3300 S & South Temple", - "stop_lat": "40.701067", - "stop_lon": "-111.896939" - }, - { - "stop_id": "18388", - "stop_code": "TX136034", - "stop_name": "Millcreek Station", - "stop_desc": "210 W 3300 S & South Temple", - "stop_lat": "40.700365", - "stop_lon": "-111.896952" - }, - { - "stop_id": "18389", - "stop_code": "TX136035", - "stop_name": "Meadowbrook Station", - "stop_desc": "188 W 3900 S & South Temple", - "stop_lat": "40.688026", - "stop_lon": "-111.896725" - }, - { - "stop_id": "18390", - "stop_code": "TX136036", - "stop_name": "Meadowbrook Station", - "stop_desc": "188 W 3900 S & South Temple", - "stop_lat": "40.687328", - "stop_lon": "-111.896553" - }, - { - "stop_id": "18391", - "stop_code": "TX136045", - "stop_name": "Murray North Station", - "stop_desc": "71 W Fireclay Ave & South Temple", - "stop_lat": "40.677155", - "stop_lon": "-111.894053" - }, - { - "stop_id": "18392", - "stop_code": "TX136048", - "stop_name": "Murray North Station", - "stop_desc": "71 W Fireclay Ave & South Temple", - "stop_lat": "40.676454", - "stop_lon": "-111.894079" - }, - { - "stop_id": "18393", - "stop_code": "TX153027", - "stop_name": "Murray Central Station", - "stop_desc": "5144 S Cottonwood St & State St", - "stop_lat": "40.660269", - "stop_lon": "-111.895282" - }, - { - "stop_id": "18394", - "stop_code": "TX153034", - "stop_name": "Murray Central Station", - "stop_desc": "5144 S Cottonwood St & State St", - "stop_lat": "40.659631", - "stop_lon": "-111.895661" - }, - { - "stop_id": "18395", - "stop_code": "TX153041", - "stop_name": "Fashion Place West Station", - "stop_desc": "222 W Winchester St & State St", - "stop_lat": "40.633823", - "stop_lon": "-111.898319" - }, - { - "stop_id": "18396", - "stop_code": "TX153045", - "stop_name": "Fashion Place West Station", - "stop_desc": "222 W Winchester St & State St", - "stop_lat": "40.633116", - "stop_lon": "-111.898355" - }, - { - "stop_id": "18397", - "stop_code": "TX153046", - "stop_name": "Midvale Fort Union Station", - "stop_desc": "7250 S 180 W & State St", - "stop_lat": "40.619458", - "stop_lon": "-111.898381" - }, - { - "stop_id": "18398", - "stop_code": "TX153047", - "stop_name": "Midvale Fort Union Station", - "stop_desc": "7250 S 180 W & State St", - "stop_lat": "40.618761", - "stop_lon": "-111.898291" - }, - { - "stop_id": "18399", - "stop_code": "TX153048", - "stop_name": "Midvale Center Station", - "stop_desc": "95 W Center St & State St", - "stop_lat": "40.610541", - "stop_lon": "-111.893216" - }, - { - "stop_id": "18400", - "stop_code": "TX153049", - "stop_name": "Midvale Center Station", - "stop_desc": "95 W Center St & State St", - "stop_lat": "40.609975", - "stop_lon": "-111.892645" - }, - { - "stop_id": "18401", - "stop_code": "TX173021", - "stop_name": "Historic Sandy Station", - "stop_desc": "165 E 9000 S & Fort Union Blvd", - "stop_lat": "40.589811", - "stop_lon": "-111.885661" - }, - { - "stop_id": "18402", - "stop_code": "TX173022", - "stop_name": "Historic Sandy Station", - "stop_desc": "165 E 9000 S & Fort Union Blvd", - "stop_lat": "40.589114", - "stop_lon": "-111.885744" - }, - { - "stop_id": "18403", - "stop_code": "TX173026", - "stop_name": "Sandy Civic Center Station", - "stop_desc": "115 E Sego Lily Dr & Fort Union Blvd", - "stop_lat": "40.571127", - "stop_lon": "-111.884681" - }, - { - "stop_id": "18404", - "stop_code": "TX173029", - "stop_name": "Sandy Civic Center Station", - "stop_desc": "115 E Sego Lily Dr & Fort Union Blvd", - "stop_lat": "40.570273", - "stop_lon": "-111.884471" - }, - { - "stop_id": "18405", - "stop_code": "TX125067", - "stop_name": "Arena Station", - "stop_desc": "350 W South Temple & 300 W", - "stop_lat": "40.769344", - "stop_lon": "-111.901146" - }, - { - "stop_id": "18406", - "stop_code": "TX125069", - "stop_name": "Arena Station", - "stop_desc": "350 W South Temple & 300 W", - "stop_lat": "40.769343", - "stop_lon": "-111.900051" - }, - { - "stop_id": "18407", - "stop_code": "TX125078", - "stop_name": "Temple Square Station", - "stop_desc": "155 W South Temple & West Temple", - "stop_lat": "40.769353", - "stop_lon": "-111.895321" - }, - { - "stop_id": "18408", - "stop_code": "TX125084", - "stop_name": "Temple Square Station", - "stop_desc": "155 W South Temple & West Temple", - "stop_lat": "40.769335", - "stop_lon": "-111.894303" - }, - { - "stop_id": "18409", - "stop_code": "TX125085", - "stop_name": "Courthouse Station", - "stop_desc": "450 S Main St & 400 S", - "stop_lat": "40.759536", - "stop_lon": "-111.891071" - }, - { - "stop_id": "18410", - "stop_code": "TX125091", - "stop_name": "Courthouse Station", - "stop_desc": "450 S Main St & 500 S", - "stop_lat": "40.758762", - "stop_lon": "-111.891096" - }, - { - "stop_id": "18411", - "stop_code": "TX125092", - "stop_name": "Ballpark Station", - "stop_desc": "180 W 1300 S & 500 S", - "stop_lat": "40.742583", - "stop_lon": "-111.896781" - }, - { - "stop_id": "18412", - "stop_code": "TX125093", - "stop_name": "Ballpark Station", - "stop_desc": "180 W 1300 S & 500 S", - "stop_lat": "40.741876", - "stop_lon": "-111.896785" - }, - { - "stop_id": "18413", - "stop_code": "TX125094", - "stop_name": "Central Pointe Station", - "stop_desc": "221 W 2100 S & 500 S", - "stop_lat": "40.724801", - "stop_lon": "-111.896861" - }, - { - "stop_id": "18414", - "stop_code": "TX125096", - "stop_name": "Central Pointe Station", - "stop_desc": "221 W 2100 S & 500 S", - "stop_lat": "40.724091", - "stop_lon": "-111.896892" - }, - { - "stop_id": "18415", - "stop_code": "TX126071", - "stop_name": "Gallivan Plaza Station", - "stop_desc": "255 S Main St & 200 S", - "stop_lat": "40.763855", - "stop_lon": "-111.891071" - }, - { - "stop_id": "20973", - "stop_code": "TX136084", - "stop_name": "900 South Station", - "stop_desc": "S 200 W & W 900 S", - "stop_lat": "40.750058", - "stop_lon": "-111.896818" - }, - { - "stop_id": "20982", - "stop_code": "TX136085", - "stop_name": "900 South Station", - "stop_desc": "825 S 200 W & 800 S", - "stop_lat": "40.750822", - "stop_lon": "-111.896788" - }, - { - "stop_id": "21225", - "stop_code": "TX173129", - "stop_name": "Sandy Expo Station", - "stop_desc": "9375 S 150 E & 9400 S", - "stop_lat": "40.581703", - "stop_lon": "-111.886234" - }, - { - "stop_id": "21226", - "stop_code": "TX173130", - "stop_name": "Sandy Expo Station", - "stop_desc": "9375 S 150 E & 9400 S", - "stop_lat": "40.581007", - "stop_lon": "-111.886429" - }, - { - "stop_id": "21761", - "stop_code": "TX101394", - "stop_name": "Salt Lake Central Station", - "stop_desc": "600 W 330 S", - "stop_lat": "40.762533", - "stop_lon": "-111.908296" - }, - { - "stop_id": "21762", - "stop_code": "TX101395", - "stop_name": "Planetarium Station", - "stop_desc": "150 S 400 W", - "stop_lat": "40.766858", - "stop_lon": "-111.902524" - }, - { - "stop_id": "21763", - "stop_code": "TX101396", - "stop_name": "Old Greektown Station", - "stop_desc": "554 W 200 S", - "stop_lat": "40.765022", - "stop_lon": "-111.905788" - }, - { - "stop_id": "21799", - "stop_code": "TX101404", - "stop_name": "Salt Lake Central Station", - "stop_desc": "330 S 600 West", - "stop_lat": "40.761721", - "stop_lon": "-111.908301" - }, - { - "stop_id": "21800", - "stop_code": "TX101405", - "stop_name": "Planetarium Station", - "stop_desc": "400 W 150 S", - "stop_lat": "40.766096", - "stop_lon": "-111.902558" - }, - { - "stop_id": "21801", - "stop_code": "TX101406", - "stop_name": "Old Greektown Station", - "stop_desc": "554 W 200 S", - "stop_lat": "40.765022", - "stop_lon": "-111.906778" - }, - { - "stop_id": "23318", - "stop_code": "TX198093", - "stop_name": "Crescent View Station", - "stop_desc": "361 E 11400 South & 361 East", - "stop_lat": "40.545343", - "stop_lon": "-111.878751" - }, - { - "stop_id": "23319", - "stop_code": "TX198094", - "stop_name": "Crescent View Station", - "stop_desc": "361 E 11400 South & 361 East", - "stop_lat": "40.544591", - "stop_lon": "-111.878506" - }, - { - "stop_id": "23320", - "stop_code": "TX198095", - "stop_name": "Kimballs Lane Station", - "stop_desc": "11796 S 700 East & 11796 South", - "stop_lat": "40.536528", - "stop_lon": "-111.872436" - }, - { - "stop_id": "23321", - "stop_code": "TX198096", - "stop_name": "Kimballs Lane Station", - "stop_desc": "11796 S 700 East & 11796 South", - "stop_lat": "40.535876", - "stop_lon": "-111.871887" - }, - { - "stop_id": "23322", - "stop_code": "TX198097", - "stop_name": "Draper Town Center Station", - "stop_desc": "1131 E Pioneer Road & 1131 East", - "stop_lat": "40.525675", - "stop_lon": "-111.859915" - }, - { - "stop_id": "23323", - "stop_code": "TX198098", - "stop_name": "Draper Town Center Station", - "stop_desc": "1131 E Pioneer Road & 1131 East", - "stop_lat": "40.525496", - "stop_lon": "-111.858805" - }, - { - "stop_id": "25328", - "stop_code": "TX102103", - "stop_name": "600 South Station", - "stop_desc": "650 S Main St & 600 S", - "stop_lat": "40.756057", - "stop_lon": "-111.891096" - }, - { - "stop_id": "25329", - "stop_code": "TX102104", - "stop_name": "600 South Station", - "stop_desc": "650 S Main Street & 600 S", - "stop_lat": "40.755113", - "stop_lon": "-111.891095" - } - ] - }, - { - "703": [ - { - "stop_id": "18377", - "stop_code": "TX126074", - "stop_name": "Library Station", - "stop_desc": "225 E 400 S & 300 S", - "stop_lat": "40.760643", - "stop_lon": "-111.884956" - }, - { - "stop_id": "18378", - "stop_code": "TX126076", - "stop_name": "Library Station", - "stop_desc": "225 E 400 S & 300 S", - "stop_lat": "40.760637", - "stop_lon": "-111.883942" - }, - { - "stop_id": "18379", - "stop_code": "TX126081", - "stop_name": "Trolley Station", - "stop_desc": "625 E 400 S & 300 S", - "stop_lat": "40.760672", - "stop_lon": "-111.873552" - }, - { - "stop_id": "18380", - "stop_code": "TX126095", - "stop_name": "Trolley Station", - "stop_desc": "625 E 400 S & 300 S", - "stop_lat": "40.760664", - "stop_lon": "-111.872527" - }, - { - "stop_id": "18381", - "stop_code": "TX126101", - "stop_name": "900 East Station", - "stop_desc": "875 E 400 S & 300 S", - "stop_lat": "40.760671", - "stop_lon": "-111.866732" - }, - { - "stop_id": "18382", - "stop_code": "TX126106", - "stop_name": "900 East Station", - "stop_desc": "875 E 400 S & 300 S", - "stop_lat": "40.760661", - "stop_lon": "-111.865711" - }, - { - "stop_id": "18383", - "stop_code": "TX126109", - "stop_name": "Stadium Station", - "stop_desc": "1349 E 500 S & 300 S", - "stop_lat": "40.760126", - "stop_lon": "-111.852171" - }, - { - "stop_id": "18384", - "stop_code": "TX126115", - "stop_name": "Stadium Station", - "stop_desc": "1349 E 500 S & 300 S", - "stop_lat": "40.759286", - "stop_lon": "-111.852178" - }, - { - "stop_id": "18387", - "stop_code": "TX136033", - "stop_name": "Millcreek Station", - "stop_desc": "210 W 3300 S & South Temple", - "stop_lat": "40.701067", - "stop_lon": "-111.896939" - }, - { - "stop_id": "18388", - "stop_code": "TX136034", - "stop_name": "Millcreek Station", - "stop_desc": "210 W 3300 S & South Temple", - "stop_lat": "40.700365", - "stop_lon": "-111.896952" - }, - { - "stop_id": "18389", - "stop_code": "TX136035", - "stop_name": "Meadowbrook Station", - "stop_desc": "188 W 3900 S & South Temple", - "stop_lat": "40.688026", - "stop_lon": "-111.896725" - }, - { - "stop_id": "18390", - "stop_code": "TX136036", - "stop_name": "Meadowbrook Station", - "stop_desc": "188 W 3900 S & South Temple", - "stop_lat": "40.687328", - "stop_lon": "-111.896553" - }, - { - "stop_id": "18391", - "stop_code": "TX136045", - "stop_name": "Murray North Station", - "stop_desc": "71 W Fireclay Ave & South Temple", - "stop_lat": "40.677155", - "stop_lon": "-111.894053" - }, - { - "stop_id": "18392", - "stop_code": "TX136048", - "stop_name": "Murray North Station", - "stop_desc": "71 W Fireclay Ave & South Temple", - "stop_lat": "40.676454", - "stop_lon": "-111.894079" - }, - { - "stop_id": "18393", - "stop_code": "TX153027", - "stop_name": "Murray Central Station", - "stop_desc": "5144 S Cottonwood St & State St", - "stop_lat": "40.660269", - "stop_lon": "-111.895282" - }, - { - "stop_id": "18394", - "stop_code": "TX153034", - "stop_name": "Murray Central Station", - "stop_desc": "5144 S Cottonwood St & State St", - "stop_lat": "40.659631", - "stop_lon": "-111.895661" - }, - { - "stop_id": "18395", - "stop_code": "TX153041", - "stop_name": "Fashion Place West Station", - "stop_desc": "222 W Winchester St & State St", - "stop_lat": "40.633823", - "stop_lon": "-111.898319" - }, - { - "stop_id": "18396", - "stop_code": "TX153045", - "stop_name": "Fashion Place West Station", - "stop_desc": "222 W Winchester St & State St", - "stop_lat": "40.633116", - "stop_lon": "-111.898355" - }, - { - "stop_id": "18409", - "stop_code": "TX125085", - "stop_name": "Courthouse Station", - "stop_desc": "450 S Main St & 400 S", - "stop_lat": "40.759536", - "stop_lon": "-111.891071" - }, - { - "stop_id": "18410", - "stop_code": "TX125091", - "stop_name": "Courthouse Station", - "stop_desc": "450 S Main St & 500 S", - "stop_lat": "40.758762", - "stop_lon": "-111.891096" - }, - { - "stop_id": "18411", - "stop_code": "TX125092", - "stop_name": "Ballpark Station", - "stop_desc": "180 W 1300 S & 500 S", - "stop_lat": "40.742583", - "stop_lon": "-111.896781" - }, - { - "stop_id": "18412", - "stop_code": "TX125093", - "stop_name": "Ballpark Station", - "stop_desc": "180 W 1300 S & 500 S", - "stop_lat": "40.741876", - "stop_lon": "-111.896785" - }, - { - "stop_id": "18413", - "stop_code": "TX125094", - "stop_name": "Central Pointe Station", - "stop_desc": "221 W 2100 S & 500 S", - "stop_lat": "40.724801", - "stop_lon": "-111.896861" - }, - { - "stop_id": "18414", - "stop_code": "TX125096", - "stop_name": "Central Pointe Station", - "stop_desc": "221 W 2100 S & 500 S", - "stop_lat": "40.724091", - "stop_lon": "-111.896892" - }, - { - "stop_id": "19166", - "stop_code": "TX127236", - "stop_name": "University South Campus Station", - "stop_desc": "1800 E South Campus Dr & 300 S", - "stop_lat": "40.760509", - "stop_lon": "-111.839146" - }, - { - "stop_id": "19167", - "stop_code": "TX127243", - "stop_name": "University South Campus Station", - "stop_desc": "1800 E South Campus Dr & 300 S", - "stop_lat": "40.760085", - "stop_lon": "-111.839976" - }, - { - "stop_id": "19168", - "stop_code": "TX127247", - "stop_name": "Fort Douglas Station", - "stop_desc": "250 S Mario Capecchi Dr & Medical Dr", - "stop_lat": "40.764766", - "stop_lon": "-111.836793" - }, - { - "stop_id": "19169", - "stop_code": "TX127251", - "stop_name": "Fort Douglas Station", - "stop_desc": "250 S Mario Capecchi Dr & Medical Dr", - "stop_lat": "40.764059", - "stop_lon": "-111.836427" - }, - { - "stop_id": "19170", - "stop_code": "TX127252", - "stop_name": "University Medical Center", - "stop_desc": "10 S Medical Dr & Medical Dr", - "stop_lat": "40.769871", - "stop_lon": "-111.839201" - }, - { - "stop_id": "19171", - "stop_code": "TX127253", - "stop_name": "University Medical Center", - "stop_desc": "10 S Medical Dr & Medical Dr", - "stop_lat": "40.769208", - "stop_lon": "-111.838503" - }, - { - "stop_id": "20973", - "stop_code": "TX136084", - "stop_name": "900 South Station", - "stop_desc": "S 200 W & W 900 S", - "stop_lat": "40.750058", - "stop_lon": "-111.896818" - }, - { - "stop_id": "20982", - "stop_code": "TX136085", - "stop_name": "900 South Station", - "stop_desc": "825 S 200 W & 800 S", - "stop_lat": "40.750822", - "stop_lon": "-111.896788" - }, - { - "stop_id": "22620", - "stop_code": "TX101715", - "stop_name": "Daybreak Parkway Station", - "stop_desc": "11405 S Grandville Ave & Daybreak Pkwy", - "stop_lat": "40.544377", - "stop_lon": "-112.014304" - }, - { - "stop_id": "22621", - "stop_code": "TX101716", - "stop_name": "South Jordan Parkway Station", - "stop_desc": "10605 S Grandville Ave", - "stop_lat": "40.559038", - "stop_lon": "-112.024643" - }, - { - "stop_id": "22622", - "stop_code": "TX101717", - "stop_name": "South Jordan Parkway Station", - "stop_desc": "10605 S Grandville Ave", - "stop_lat": "40.558395", - "stop_lon": "-112.024764" - }, - { - "stop_id": "22623", - "stop_code": "TX101718", - "stop_name": "5600 W. Old Bingham Hwy Station", - "stop_desc": "5651 W Old Bingham Highway & Daybreak Pkwy", - "stop_lat": "40.569441", - "stop_lon": "-112.024871" - }, - { - "stop_id": "22624", - "stop_code": "TX101719", - "stop_name": "5600 W. Old Bingham Hwy Station", - "stop_desc": "5651 W Old Bingham Highway & Daybreak Pkwy", - "stop_lat": "40.568807", - "stop_lon": "-112.024871" - }, - { - "stop_id": "22625", - "stop_code": "TX101720", - "stop_name": "4800 W. Old Bingham Hwy Station", - "stop_desc": "4973 W Old Bingham Highway & 4800 W", - "stop_lat": "40.581652", - "stop_lon": "-112.003837" - }, - { - "stop_id": "22626", - "stop_code": "TX101721", - "stop_name": "4800 W. Old Bingham Hwy Station", - "stop_desc": "4973 W Old Bingham Highway & 4800 W", - "stop_lat": "40.581307", - "stop_lon": "-112.004538" - }, - { - "stop_id": "22627", - "stop_code": "TX101722", - "stop_name": "Jordan Valley Station", - "stop_desc": "8600 S 3400 W & 3200 W", - "stop_lat": "40.594939", - "stop_lon": "-111.971375" - }, - { - "stop_id": "22628", - "stop_code": "TX101723", - "stop_name": "Jordan Valley Station", - "stop_desc": "8600 S 3400 W & 3200 W", - "stop_lat": "40.594708", - "stop_lon": "-111.972171" - }, - { - "stop_id": "22629", - "stop_code": "TX101724", - "stop_name": "2700 W. Sugar Factory Rd Station", - "stop_desc": "2700 W Sugar Factory Rd & Jaguar Dr", - "stop_lat": "40.599207", - "stop_lon": "-111.956458" - }, - { - "stop_id": "22630", - "stop_code": "TX101725", - "stop_name": "2700 W. Sugar Factory Rd Station", - "stop_desc": "2700 W Sugar Factory Rd & Jaguar Dr", - "stop_lat": "40.598976", - "stop_lon": "-111.957251" - }, - { - "stop_id": "22631", - "stop_code": "TX101726", - "stop_name": "West Jordan City Center Station", - "stop_desc": "8021 S Redwood Rd & Redwood Rd", - "stop_lat": "40.605024", - "stop_lon": "-111.936071" - }, - { - "stop_id": "22632", - "stop_code": "TX101727", - "stop_name": "West Jordan City Center Station", - "stop_desc": "8021 S Redwood Rd & Redwood Rd", - "stop_lat": "40.604797", - "stop_lon": "-111.936857" - }, - { - "stop_id": "22633", - "stop_code": "TX101728", - "stop_name": "Historic Gardner Station", - "stop_desc": "1127 W 7800 S & 7800 S", - "stop_lat": "40.608219", - "stop_lon": "-111.924005" - }, - { - "stop_id": "22634", - "stop_code": "TX101729", - "stop_name": "Historic Gardner Station", - "stop_desc": "1127 W 7800 S & 7800 S", - "stop_lat": "40.607889", - "stop_lon": "-111.924723" - }, - { - "stop_id": "22635", - "stop_code": "TX101730", - "stop_name": "Bingham Junction Station", - "stop_desc": "7387 S Bingham Junction Blvd & Bingham Junction Blvd", - "stop_lat": "40.617138", - "stop_lon": "-111.914906" - }, - { - "stop_id": "22636", - "stop_code": "TX101731", - "stop_name": "Bingham Junction Station", - "stop_desc": "7387 S Bingham Junction Blvd & Bingham Junction Blvd", - "stop_lat": "40.617073", - "stop_lon": "-111.915754" - }, - { - "stop_id": "22639", - "stop_code": "TX101734", - "stop_name": "Daybreak Parkway Station", - "stop_desc": "11405 S Grandville Ave & Daybreak Pkwy", - "stop_lat": "40.543811", - "stop_lon": "-112.013905" - }, - { - "stop_id": "24144", - "stop_code": "198570", - "stop_name": "MRSC OPERATOR RELIEF", - "stop_desc": "501 W 6825 S", - "stop_lat": "40.627338", - "stop_lon": "-111.906399" - }, - { - "stop_id": "25328", - "stop_code": "TX102103", - "stop_name": "600 South Station", - "stop_desc": "650 S Main St & 600 S", - "stop_lat": "40.756057", - "stop_lon": "-111.891096" - }, - { - "stop_id": "25329", - "stop_code": "TX102104", - "stop_name": "600 South Station", - "stop_desc": "650 S Main Street & 600 S", - "stop_lat": "40.755113", - "stop_lon": "-111.891095" - }, - { - "stop_id": "25479", - "stop_code": "TX198711", - "stop_name": "South Jordan Downtown Station", - "stop_desc": "11080 S Granville Ave & Lake Ave", - "stop_lat": "40.549573", - "stop_lon": "-112.019345" - }, - { - "stop_id": "25480", - "stop_code": "TX198710", - "stop_name": "South Jordan Downtown Station", - "stop_desc": "11080 S Granville Ave & Lake Ave", - "stop_lat": "40.550678", - "stop_lon": "-112.020504" - } - ] - }, - { - "704": [ - { - "stop_id": "18377", - "stop_code": "TX126074", - "stop_name": "Library Station", - "stop_desc": "225 E 400 S & 300 S", - "stop_lat": "40.760643", - "stop_lon": "-111.884956" - }, - { - "stop_id": "18378", - "stop_code": "TX126076", - "stop_name": "Library Station", - "stop_desc": "225 E 400 S & 300 S", - "stop_lat": "40.760637", - "stop_lon": "-111.883942" - }, - { - "stop_id": "18379", - "stop_code": "TX126081", - "stop_name": "Trolley Station", - "stop_desc": "625 E 400 S & 300 S", - "stop_lat": "40.760672", - "stop_lon": "-111.873552" - }, - { - "stop_id": "18380", - "stop_code": "TX126095", - "stop_name": "Trolley Station", - "stop_desc": "625 E 400 S & 300 S", - "stop_lat": "40.760664", - "stop_lon": "-111.872527" - }, - { - "stop_id": "18381", - "stop_code": "TX126101", - "stop_name": "900 East Station", - "stop_desc": "875 E 400 S & 300 S", - "stop_lat": "40.760671", - "stop_lon": "-111.866732" - }, - { - "stop_id": "18382", - "stop_code": "TX126106", - "stop_name": "900 East Station", - "stop_desc": "875 E 400 S & 300 S", - "stop_lat": "40.760661", - "stop_lon": "-111.865711" - }, - { - "stop_id": "18383", - "stop_code": "TX126109", - "stop_name": "Stadium Station", - "stop_desc": "1349 E 500 S & 300 S", - "stop_lat": "40.760126", - "stop_lon": "-111.852171" - }, - { - "stop_id": "18384", - "stop_code": "TX126115", - "stop_name": "Stadium Station", - "stop_desc": "1349 E 500 S & 300 S", - "stop_lat": "40.759286", - "stop_lon": "-111.852178" - }, - { - "stop_id": "18387", - "stop_code": "TX136033", - "stop_name": "Millcreek Station", - "stop_desc": "210 W 3300 S & South Temple", - "stop_lat": "40.701067", - "stop_lon": "-111.896939" - }, - { - "stop_id": "18388", - "stop_code": "TX136034", - "stop_name": "Millcreek Station", - "stop_desc": "210 W 3300 S & South Temple", - "stop_lat": "40.700365", - "stop_lon": "-111.896952" - }, - { - "stop_id": "18389", - "stop_code": "TX136035", - "stop_name": "Meadowbrook Station", - "stop_desc": "188 W 3900 S & South Temple", - "stop_lat": "40.688026", - "stop_lon": "-111.896725" - }, - { - "stop_id": "18390", - "stop_code": "TX136036", - "stop_name": "Meadowbrook Station", - "stop_desc": "188 W 3900 S & South Temple", - "stop_lat": "40.687328", - "stop_lon": "-111.896553" - }, - { - "stop_id": "18391", - "stop_code": "TX136045", - "stop_name": "Murray North Station", - "stop_desc": "71 W Fireclay Ave & South Temple", - "stop_lat": "40.677155", - "stop_lon": "-111.894053" - }, - { - "stop_id": "18392", - "stop_code": "TX136048", - "stop_name": "Murray North Station", - "stop_desc": "71 W Fireclay Ave & South Temple", - "stop_lat": "40.676454", - "stop_lon": "-111.894079" - }, - { - "stop_id": "18393", - "stop_code": "TX153027", - "stop_name": "Murray Central Station", - "stop_desc": "5144 S Cottonwood St & State St", - "stop_lat": "40.660269", - "stop_lon": "-111.895282" - }, - { - "stop_id": "18394", - "stop_code": "TX153034", - "stop_name": "Murray Central Station", - "stop_desc": "5144 S Cottonwood St & State St", - "stop_lat": "40.659631", - "stop_lon": "-111.895661" - }, - { - "stop_id": "18395", - "stop_code": "TX153041", - "stop_name": "Fashion Place West Station", - "stop_desc": "222 W Winchester St & State St", - "stop_lat": "40.633823", - "stop_lon": "-111.898319" - }, - { - "stop_id": "18396", - "stop_code": "TX153045", - "stop_name": "Fashion Place West Station", - "stop_desc": "222 W Winchester St & State St", - "stop_lat": "40.633116", - "stop_lon": "-111.898355" - }, - { - "stop_id": "18409", - "stop_code": "TX125085", - "stop_name": "Courthouse Station", - "stop_desc": "450 S Main St & 400 S", - "stop_lat": "40.759536", - "stop_lon": "-111.891071" - }, - { - "stop_id": "18410", - "stop_code": "TX125091", - "stop_name": "Courthouse Station", - "stop_desc": "450 S Main St & 500 S", - "stop_lat": "40.758762", - "stop_lon": "-111.891096" - }, - { - "stop_id": "18411", - "stop_code": "TX125092", - "stop_name": "Ballpark Station", - "stop_desc": "180 W 1300 S & 500 S", - "stop_lat": "40.742583", - "stop_lon": "-111.896781" - }, - { - "stop_id": "18412", - "stop_code": "TX125093", - "stop_name": "Ballpark Station", - "stop_desc": "180 W 1300 S & 500 S", - "stop_lat": "40.741876", - "stop_lon": "-111.896785" - }, - { - "stop_id": "18413", - "stop_code": "TX125094", - "stop_name": "Central Pointe Station", - "stop_desc": "221 W 2100 S & 500 S", - "stop_lat": "40.724801", - "stop_lon": "-111.896861" - }, - { - "stop_id": "18414", - "stop_code": "TX125096", - "stop_name": "Central Pointe Station", - "stop_desc": "221 W 2100 S & 500 S", - "stop_lat": "40.724091", - "stop_lon": "-111.896892" - }, - { - "stop_id": "19166", - "stop_code": "TX127236", - "stop_name": "University South Campus Station", - "stop_desc": "1800 E South Campus Dr & 300 S", - "stop_lat": "40.760509", - "stop_lon": "-111.839146" - }, - { - "stop_id": "19167", - "stop_code": "TX127243", - "stop_name": "University South Campus Station", - "stop_desc": "1800 E South Campus Dr & 300 S", - "stop_lat": "40.760085", - "stop_lon": "-111.839976" - }, - { - "stop_id": "19168", - "stop_code": "TX127247", - "stop_name": "Fort Douglas Station", - "stop_desc": "250 S Mario Capecchi Dr & Medical Dr", - "stop_lat": "40.764766", - "stop_lon": "-111.836793" - }, - { - "stop_id": "19169", - "stop_code": "TX127251", - "stop_name": "Fort Douglas Station", - "stop_desc": "250 S Mario Capecchi Dr & Medical Dr", - "stop_lat": "40.764059", - "stop_lon": "-111.836427" - }, - { - "stop_id": "19170", - "stop_code": "TX127252", - "stop_name": "University Medical Center", - "stop_desc": "10 S Medical Dr & Medical Dr", - "stop_lat": "40.769871", - "stop_lon": "-111.839201" - }, - { - "stop_id": "19171", - "stop_code": "TX127253", - "stop_name": "University Medical Center", - "stop_desc": "10 S Medical Dr & Medical Dr", - "stop_lat": "40.769208", - "stop_lon": "-111.838503" - }, - { - "stop_id": "20973", - "stop_code": "TX136084", - "stop_name": "900 South Station", - "stop_desc": "S 200 W & W 900 S", - "stop_lat": "40.750058", - "stop_lon": "-111.896818" - }, - { - "stop_id": "20982", - "stop_code": "TX136085", - "stop_name": "900 South Station", - "stop_desc": "825 S 200 W & 800 S", - "stop_lat": "40.750822", - "stop_lon": "-111.896788" - }, - { - "stop_id": "22620", - "stop_code": "TX101715", - "stop_name": "Daybreak Parkway Station", - "stop_desc": "11405 S Grandville Ave & Daybreak Pkwy", - "stop_lat": "40.544377", - "stop_lon": "-112.014304" - }, - { - "stop_id": "22621", - "stop_code": "TX101716", - "stop_name": "South Jordan Parkway Station", - "stop_desc": "10605 S Grandville Ave", - "stop_lat": "40.559038", - "stop_lon": "-112.024643" - }, - { - "stop_id": "22622", - "stop_code": "TX101717", - "stop_name": "South Jordan Parkway Station", - "stop_desc": "10605 S Grandville Ave", - "stop_lat": "40.558395", - "stop_lon": "-112.024764" - }, - { - "stop_id": "22623", - "stop_code": "TX101718", - "stop_name": "5600 W. Old Bingham Hwy Station", - "stop_desc": "5651 W Old Bingham Highway & Daybreak Pkwy", - "stop_lat": "40.569441", - "stop_lon": "-112.024871" - }, - { - "stop_id": "22624", - "stop_code": "TX101719", - "stop_name": "5600 W. Old Bingham Hwy Station", - "stop_desc": "5651 W Old Bingham Highway & Daybreak Pkwy", - "stop_lat": "40.568807", - "stop_lon": "-112.024871" - }, - { - "stop_id": "22625", - "stop_code": "TX101720", - "stop_name": "4800 W. Old Bingham Hwy Station", - "stop_desc": "4973 W Old Bingham Highway & 4800 W", - "stop_lat": "40.581652", - "stop_lon": "-112.003837" - }, - { - "stop_id": "22626", - "stop_code": "TX101721", - "stop_name": "4800 W. Old Bingham Hwy Station", - "stop_desc": "4973 W Old Bingham Highway & 4800 W", - "stop_lat": "40.581307", - "stop_lon": "-112.004538" - }, - { - "stop_id": "22627", - "stop_code": "TX101722", - "stop_name": "Jordan Valley Station", - "stop_desc": "8600 S 3400 W & 3200 W", - "stop_lat": "40.594939", - "stop_lon": "-111.971375" - }, - { - "stop_id": "22628", - "stop_code": "TX101723", - "stop_name": "Jordan Valley Station", - "stop_desc": "8600 S 3400 W & 3200 W", - "stop_lat": "40.594708", - "stop_lon": "-111.972171" - }, - { - "stop_id": "22629", - "stop_code": "TX101724", - "stop_name": "2700 W. Sugar Factory Rd Station", - "stop_desc": "2700 W Sugar Factory Rd & Jaguar Dr", - "stop_lat": "40.599207", - "stop_lon": "-111.956458" - }, - { - "stop_id": "22630", - "stop_code": "TX101725", - "stop_name": "2700 W. Sugar Factory Rd Station", - "stop_desc": "2700 W Sugar Factory Rd & Jaguar Dr", - "stop_lat": "40.598976", - "stop_lon": "-111.957251" - }, - { - "stop_id": "22631", - "stop_code": "TX101726", - "stop_name": "West Jordan City Center Station", - "stop_desc": "8021 S Redwood Rd & Redwood Rd", - "stop_lat": "40.605024", - "stop_lon": "-111.936071" - }, - { - "stop_id": "22632", - "stop_code": "TX101727", - "stop_name": "West Jordan City Center Station", - "stop_desc": "8021 S Redwood Rd & Redwood Rd", - "stop_lat": "40.604797", - "stop_lon": "-111.936857" - }, - { - "stop_id": "22633", - "stop_code": "TX101728", - "stop_name": "Historic Gardner Station", - "stop_desc": "1127 W 7800 S & 7800 S", - "stop_lat": "40.608219", - "stop_lon": "-111.924005" - }, - { - "stop_id": "22634", - "stop_code": "TX101729", - "stop_name": "Historic Gardner Station", - "stop_desc": "1127 W 7800 S & 7800 S", - "stop_lat": "40.607889", - "stop_lon": "-111.924723" - }, - { - "stop_id": "22635", - "stop_code": "TX101730", - "stop_name": "Bingham Junction Station", - "stop_desc": "7387 S Bingham Junction Blvd & Bingham Junction Blvd", - "stop_lat": "40.617138", - "stop_lon": "-111.914906" - }, - { - "stop_id": "22636", - "stop_code": "TX101731", - "stop_name": "Bingham Junction Station", - "stop_desc": "7387 S Bingham Junction Blvd & Bingham Junction Blvd", - "stop_lat": "40.617073", - "stop_lon": "-111.915754" - }, - { - "stop_id": "22639", - "stop_code": "TX101734", - "stop_name": "Daybreak Parkway Station", - "stop_desc": "11405 S Grandville Ave & Daybreak Pkwy", - "stop_lat": "40.543811", - "stop_lon": "-112.013905" - }, - { - "stop_id": "24144", - "stop_code": "198570", - "stop_name": "MRSC OPERATOR RELIEF", - "stop_desc": "501 W 6825 S", - "stop_lat": "40.627338", - "stop_lon": "-111.906399" - }, - { - "stop_id": "25328", - "stop_code": "TX102103", - "stop_name": "600 South Station", - "stop_desc": "650 S Main St & 600 S", - "stop_lat": "40.756057", - "stop_lon": "-111.891096" - }, - { - "stop_id": "25329", - "stop_code": "TX102104", - "stop_name": "600 South Station", - "stop_desc": "650 S Main Street & 600 S", - "stop_lat": "40.755113", - "stop_lon": "-111.891095" - }, - { - "stop_id": "25479", - "stop_code": "TX198711", - "stop_name": "South Jordan Downtown Station", - "stop_desc": "11080 S Granville Ave & Lake Ave", - "stop_lat": "40.549573", - "stop_lon": "-112.019345" - }, - { - "stop_id": "25480", - "stop_code": "TX198710", - "stop_name": "South Jordan Downtown Station", - "stop_desc": "11080 S Granville Ave & Lake Ave", - "stop_lat": "40.550678", - "stop_lon": "-112.020504" - } - ] - }, - { - "720": [ - { - "stop_id": "23565", - "stop_code": "TX198140", - "stop_name": "Central Pointe Station", - "stop_desc": "2180 S & 210 W", - "stop_lat": "40.723424", - "stop_lon": "-111.896794" - }, - { - "stop_id": "23566", - "stop_code": "TX198141", - "stop_name": "South Salt Lake City Station", - "stop_desc": "2240 S & 30 E", - "stop_lat": "40.722263", - "stop_lon": "-111.890174" - }, - { - "stop_id": "23567", - "stop_code": "TX198142", - "stop_name": "300 East Station", - "stop_desc": "2240 S & 310 E", - "stop_lat": "40.722324", - "stop_lon": "-111.882335" - }, - { - "stop_id": "23568", - "stop_code": "TX198143", - "stop_name": "500 East Station", - "stop_desc": "2240 S & 490 E", - "stop_lat": "40.722306", - "stop_lon": "-111.877085" - }, - { - "stop_id": "23569", - "stop_code": "TX198144", - "stop_name": "700 East Station", - "stop_desc": "2220 S & 690 E", - "stop_lat": "40.722798", - "stop_lon": "-111.871612" - }, - { - "stop_id": "23570", - "stop_code": "TX198145", - "stop_name": "Sugarmont Station", - "stop_desc": "2220 S & 910 E", - "stop_lat": "40.722818", - "stop_lon": "-111.865092" - }, - { - "stop_id": "23571", - "stop_code": "TX198146", - "stop_name": "Fairmont Station", - "stop_desc": "2220 S & 1040 E", - "stop_lat": "40.722757", - "stop_lon": "-111.861675" - } - ] - }, - { - "750": [ - { - "stop_id": "21753", - "stop_code": "FR601084", - "stop_name": "Ogden Central Station", - "stop_desc": "25 W 2300 S & Wall Ave", - "stop_lat": "41.224285", - "stop_lon": "-111.980631" - }, - { - "stop_id": "21757", - "stop_code": "FR301081", - "stop_name": "Clearfield Station", - "stop_desc": "1250 S State St & Main St", - "stop_lat": "41.094769", - "stop_lon": "-112.013807" - }, - { - "stop_id": "21758", - "stop_code": "FR301084", - "stop_name": "Farmington Station", - "stop_desc": "700 N Park Lane & 150 South", - "stop_lat": "40.987266", - "stop_lon": "-111.903667" - }, - { - "stop_id": "21759", - "stop_code": "FR301085", - "stop_name": "Woods Cross Station", - "stop_desc": "770 S 800 W & Main St", - "stop_lat": "40.880457", - "stop_lon": "-111.903151" - }, - { - "stop_id": "21760", - "stop_code": "FR601085", - "stop_name": "Roy Station", - "stop_desc": "4155 S Sandridge Dr & Wall Ave", - "stop_lat": "41.188757", - "stop_lon": "-112.039378" - }, - { - "stop_id": "21771", - "stop_code": "FR101393", - "stop_name": "Salt Lake Central Station", - "stop_desc": "Uta Frontrunner", - "stop_lat": "40.76234", - "stop_lon": "-111.909052" - }, - { - "stop_id": "21772", - "stop_code": "FR301082", - "stop_name": "Layton Station", - "stop_desc": "150 S Main Ave & 150 South", - "stop_lat": "41.056903", - "stop_lon": "-111.964955" - }, - { - "stop_id": "23071", - "stop_code": "FR801160", - "stop_name": "American Fork Station", - "stop_desc": "728 W 200 South & 200 South", - "stop_lat": "40.374774", - "stop_lon": "-111.820649" - }, - { - "stop_id": "23073", - "stop_code": "FR801164", - "stop_name": "Provo Central Station", - "stop_desc": "690 S University Ave & University Ave", - "stop_lat": "40.22544", - "stop_lon": "-111.660632" - }, - { - "stop_id": "23074", - "stop_code": "FR801159", - "stop_name": "Lehi Station", - "stop_desc": "3101 N Ashton Blvd & Ashton Blvd", - "stop_lat": "40.425196", - "stop_lon": "-111.896354" - }, - { - "stop_id": "23076", - "stop_code": "FR801163", - "stop_name": "Orem Central Station", - "stop_desc": "900 S 1350 W & 1350 W", - "stop_lat": "40.28014", - "stop_lon": "-111.725489" - }, - { - "stop_id": "23080", - "stop_code": "FR198021", - "stop_name": "Murray Central Station", - "stop_desc": "127 W Vine Street & Vine Street", - "stop_lat": "40.659758", - "stop_lon": "-111.896432" - }, - { - "stop_id": "23081", - "stop_code": "FR198022", - "stop_name": "Draper Station", - "stop_desc": "12968 S 365 W", - "stop_lat": "40.515484", - "stop_lon": "-111.904407" - }, - { - "stop_id": "23082", - "stop_code": "FR198023", - "stop_name": "South Jordan Station", - "stop_desc": "10351 S Jordan Gateway", - "stop_lat": "40.563155", - "stop_lon": "-111.900753" - }, - { - "stop_id": "23113", - "stop_code": "FR198030", - "stop_name": "North Temple Station", - "stop_desc": "125 N 500 WEST & 500 WEST", - "stop_lat": "40.772532", - "stop_lon": "-111.905124" - }, - { - "stop_id": "24020", - "stop_code": "WRMSPREL", - "stop_name": "WARM SPRINGS RELIEF POINT", - "stop_desc": "UNION PACIFIC", - "stop_lat": "40.790626", - "stop_lon": "-111.90769" - }, - { - "stop_id": "25330", - "stop_code": "FR800022", - "stop_name": "Vineyard Station", - "stop_desc": "", - "stop_lat": "40.312735", - "stop_lon": "-111.750248" - } - ] - } -] \ No newline at end of file diff --git a/src/dal/data/vehicles.json b/src/dal/data/vehicles.json deleted file mode 100644 index f28cbd7..0000000 --- a/src/dal/data/vehicles.json +++ /dev/null @@ -1,68 +0,0 @@ -[ - { - "vehicleId": "1003B", - "routeNum": "701", - "routeName": "Blue Line", - "destination": "To Salt Lake Central", - "bearing": 0.3, - "location": { - "latitude": 40.67723, - "longitude": -111.8941 - } - }, - { - "vehicleId": "1016B", - "routeNum": "701", - "routeName": "Blue Line", - "destination": "To Draper", - "bearing": 89.9, - "location": { - "latitude": 40.76929, - "longitude": -111.9005 - } - }, - { - "vehicleId": "1006A", - "routeNum": "701", - "routeName": "Blue Line", - "destination": "To Salt Lake Central", - "bearing": 358.6, - "location": { - "latitude": 40.76017, - "longitude": -111.8911 - } - }, - { - "vehicleId": "1028A", - "routeNum": "701", - "routeName": "Blue Line", - "destination": "To Draper", - "bearing": 179.9, - "location": { - "latitude": 40.74292, - "longitude": -111.8969 - } - }, - { - "vehicleId": "1004A", - "routeNum": "701", - "routeName": "Blue Line", - "destination": "To Salt Lake Central", - "bearing": 349, - "location": { - "latitude": 40.57289, - "longitude": -111.8852 - } - }, - { - "vehicleId": "1008A", - "routeNum": "701", - "routeName": "Blue Line", - "destination": "To Draper", - "bearing": 180.6, - "location": { - "latitude": 40.65089, - "longitude": -111.8982 - } - } -] diff --git a/src/routes/vehicles.js b/src/routes/vehicles.js deleted file mode 100644 index a43466a..0000000 --- a/src/routes/vehicles.js +++ /dev/null @@ -1,48 +0,0 @@ -import express from "express"; -import * as dal from "../dal/staticDal.js"; - -const router = express.Router(); - -router.get("/", (req, res) => { - let vehicles = dal.getVehicles(); - - const {routeNum, routeName, destination, minLat, maxLat, minLng, maxLng, limit} = req.query; - - if (routeNum) vehicles = vehicles.filter(v => String(v.routeNum) === String(routeNum)); - if (routeName) vehicles = vehicles.filter(v => v.routeName && v.routeName.toLowerCase().includes(String(routeName).toLowerCase())); - if (destination) vehicles = vehicles.filter(v => v.destination && v.destination.toLowerCase().includes(String(destination).toLowerCase())); - - if (minLat || maxLat || minLng || maxLng) { - const minLatN = parseFloat(minLat ?? -90); - const maxLatN = parseFloat(maxLat ?? 90); - const minLngN = parseFloat(minLng ?? -180); - const maxLngN = parseFloat(maxLng ?? 180); - - vehicles = vehicles.filter(v => { - const lat = parseFloat(v.location?.latitude); - const lng = parseFloat(v.location?.longitude); - - return lat >= minLatN && lat <= maxLatN && lng >= minLngN && lng <= maxLngN; - }); - - } - - let returned = vehicles.length; - if (limit) { - const lim = Math.max(1, Math.min(1000, parseInt(limit, 10) || 100)); - - vehicles = vehicles.slice(0, lim); - returned = vehicles.length; - } - - res.json({meta: {returned}, data: vehicles}); -}); - -router.get("/:id", (req, res) => { - const v = dal.getVehicleById(req.params.id); - if (!v) return res.status(404).json({error: "Vehicle Was Not Found"}); - - res.json({data: v}); -}); - -export default router; diff --git a/start.js b/start.js deleted file mode 100644 index 4affc24..0000000 --- a/start.js +++ /dev/null @@ -1,12 +0,0 @@ -import express from "express"; -import app from "./app.js"; - -const PORT = process.env.PORT || 7653; - -// Serve static files from "public" folder -app.use(express.static('public')); - -// Start the server -app.listen(PORT, () => { - console.log(`Transit API running at http://localhost:${PORT}`); -}); diff --git a/tools/gtfsData.js b/tools/gtfsData.js new file mode 100644 index 0000000..6c4933e --- /dev/null +++ b/tools/gtfsData.js @@ -0,0 +1,324 @@ +const GtfsRealtimeBindings = require("gtfs-realtime-bindings"); +const unzipper = require("unzipper"); +const parse = require("csv-parse/sync").parse; + +const TRAIN_ROUTES = ["701", "703", "704", "720", "750"]; +const URL = "https://apps.rideuta.com/tms/gtfs/"; +const URL_ROUTES = ["Vehicle", "TripUpdate", "Alert"]; +const RT_POLLING = 3000; + +let gtfs_data = null; +let gtfs_rt_v = null; +let gtfs_rt_t = null; +let gtfs_rt_a = null; +let gtfs_timestamp = null; +let updatePromise = null; + + +async function applyTripUpdates(stopTimes, tripId) { + await updateGtfsRt(); + if (!gtfs_rt_t) return stopTimes; + + const tripUpdateEntity = gtfs_rt_t.entity.find(e => e.tripUpdate?.trip?.tripId === tripId); + if (!tripUpdateEntity || !tripUpdateEntity.tripUpdate) return stopTimes; + + const updates = tripUpdateEntity.tripUpdate.stopTimeUpdate || []; + + const updateMap = new Map(); + updates.forEach(u => { + if (u.stopId) updateMap.set(u.stopId, u); + }); + + return stopTimes.map(st => { + const update = updateMap.get(st.stop_id); + if (!update) return { ...st }; + + return { + ...st, + arrival: update.arrival ? { + time: update.arrival.time, + delay: update.arrival.delay + } : undefined, + departure: update.departure ? { + time: update.departure.time, + delay: update.departure.delay + } : undefined, + scheduleRelationship: update.scheduleRelationship || 'SCHEDULED' + }; + }); +} + +async function loadGtfsStaticInMemory() { + const url = "https://apps.rideuta.com/tms/gtfs/Static"; + const res = await fetch(url); + if (!res.ok) throw new Error(`Failed: ${res.status} ${res.statusText}`); + + const zipBuffer = Buffer.from(await res.arrayBuffer()); + const directory = await unzipper.Open.buffer(zipBuffer); + const gtfs = {}; + + for (const entry of directory.files) { + if (!entry.path.endsWith(".txt")) continue; // only GTFS .txt files + + const fileBuffer = await entry.buffer(); + const text = fileBuffer.toString("utf8"); + const rows = parse(text, { columns: true, skip_empty_lines: true }); + const name = entry.path.replace(".txt", ""); + gtfs[name] = rows; + } + + return gtfs; +} + +async function getTrains() { + await updateGtfsRt(); + + if (!gtfs_rt_v) return []; + const trains = []; + gtfs_rt_v.entity.forEach(entity => { + if (entity.vehicle) { + const tripId = entity.vehicle.trip.tripId; + const trip = gtfs_data.trips.find(t => t.trip_id === tripId); + //const stopTimes = gtfs_data.stop_times.filter(st => st.trip_id === tripId); + + let route = null; + if (trip) { + route = gtfs_data.routes.find(r => r.route_id === trip.route_id); + } + if (route && TRAIN_ROUTES.find(r => r === route.route_short_name)) { + trains.push({ + vehicle: entity.vehicle, + trip, + //stopTimes, + route + }); + } + } + }); + + return trains; +} + +async function getTrainsByRoute(route) { + const trains = await getTrains(); + return trains.filter(t => t.route && t.route.route_short_name === route); +} + +async function getBuses() { + await updateGtfsRt(); + + if (!gtfs_rt_v) return []; + const buses = []; + + gtfs_rt_v.entity.forEach(entity => { + if (entity.vehicle) { + const tripId = entity.vehicle.trip.tripId; + const trip = gtfs_data.trips.find(t => t.trip_id === tripId); + //const stopTimes = gtfs_data.stop_times.filter(st => st.trip_id === tripId); + + let route = null; + if (trip) { + route = gtfs_data.routes.find(r => r.route_id === trip.route_id); + } + if (route && !TRAIN_ROUTES.find(r => r === route.route_short_name)) { + buses.push({ + vehicle: entity.vehicle, + trip, + //stopTimes, + route + }); + } + } + }); + + return buses; +} + +async function getBusesByRoute(route) { + const buses = await getBuses(); + return buses.filter(b => b.route && b.route.route_short_name === route); +} + +async function updateGtfsRt() { + if (!gtfs_data) gtfs_data = await loadGtfsStaticInMemory(); + + const now = Date.now(); + if (!gtfs_timestamp || now - gtfs_timestamp >= RT_POLLING) { + if (!updatePromise) { + updatePromise = (async () => { + gtfs_timestamp = now; + try { + [gtfs_rt_v, gtfs_rt_t, gtfs_rt_a] = await Promise.all([ + loadGtfsRt("Vehicle"), + loadGtfsRt("TripUpdate"), + loadGtfsRt("Alert") + ]); + } catch (e) { + console.error("Failed to update RT feeds:", e); + } finally { + updatePromise = null; + } + })(); + } + await updatePromise; + } + return { gtfs_rt_v,gtfs_rt_t,gtfs_rt_a }; +} + +async function loadGtfsRt(feedType = URL_ROUTES[0]) { + const response = await fetch(URL + feedType); + if (!response.ok) { + throw new Error(`HTTP ${response.status}: ${response.statusText}`); + } + const buffer = new Uint8Array(await response.arrayBuffer()); + return GtfsRealtimeBindings.transit_realtime.FeedMessage.decode(buffer); +} + +async function getAlerts() { + await updateGtfsRt(); + + const alerts = []; + if (!gtfs_rt_a) return []; + const routeMap = new Map(gtfs_data.routes.map(r => [r.route_id, r])); + + gtfs_rt_a.entity.forEach(entity => { + + const informedEntities = entity.alert?.informedEntity || []; + + const routes = informedEntities + .map(e => e.routeId) + .filter(Boolean) + .map(routeId => routeMap.get(routeId)) + .filter(Boolean); + + alerts.push({ alert: entity.alert, routes }); + }); + + return alerts; +} + +async function getAlertsByRoute(route) { + const alerts = await getAlerts(); + return alerts.filter(a => + a.routes && a.routes.some(r => r.route_short_name === route) + ); +} + +async function getScheduleByRoute(route) { + await updateGtfsRt(); + + const matchingRoutes = gtfs_data.routes.filter(r => r.route_short_name === route); + if (!matchingRoutes.length) return []; + + const trips = gtfs_data.trips.filter(t => matchingRoutes.some(r => r.route_id === t.route_id)); + const schedulePromises = trips.map(async trip => { + let stopTimes = gtfs_data.stop_times.filter(st => st.trip_id === trip.trip_id); + stopTimes = await applyTripUpdates(stopTimes, trip.trip_id); + const routeObj = matchingRoutes.find(r => r.route_id === trip.route_id); + + return { trip, stopTimes, route: routeObj }; + }); + + return await Promise.all(schedulePromises); +} + +async function getScheduleByStationId(stopId) { + await updateGtfsRt(); + + const stopTimes = gtfs_data.stop_times.filter(st => st.stop_id === stopId); + const schedulePromises = stopTimes.map(async st => { + const trip = gtfs_data.trips.find(t => t.trip_id === st.trip_id); + const route = trip ? gtfs_data.routes.find(r => r.route_id === trip.route_id) : null; + const updatedStopTimes = await applyTripUpdates([st], st.trip_id); + + return { stopTime: updatedStopTimes[0], trip, route }; + }); + + return await Promise.all(schedulePromises); +} + +async function getShapeByRoute(route) { + if (!gtfs_data) { + await loadGtfsStaticInMemory(); + }; + + const routes = gtfs_data.routes.filter(r => r.route_short_name === route); + if (!routes.length) return []; + + const shapeIds = new Set(); + gtfs_data.trips.forEach(trip => { + if (routes.some(r => r.route_id === trip.route_id) && trip.shape_id) { + shapeIds.add(trip.shape_id); + } + }); + + const shapes = []; + shapeIds.forEach(shapeId => { + const points = gtfs_data.shapes + .filter(s => s.shape_id === shapeId) + .sort((a, b) => parseInt(a.shape_pt_sequence) - parseInt(b.shape_pt_sequence)) + .map(s => ({ lat: parseFloat(s.shape_pt_lat), lon: parseFloat(s.shape_pt_lon) })); + + shapes.push({ shapeId, points }); + }); + + return shapes; +} + +async function getRoutes() { + if (!gtfs_data) { + gtfs_data = await loadGtfsStaticInMemory(); + } + return gtfs_data.routes || []; +} + +async function getStops() { + if (!gtfs_data) { + gtfs_data = await loadGtfsStaticInMemory(); + } + return gtfs_data.stops || []; +} + +async function getStopsByRoute(route) { + if (!gtfs_data) { + gtfs_data = await loadGtfsStaticInMemory(); + } + + const matchingRoutes = gtfs_data.routes.filter(r => r.route_short_name === route); + if (!matchingRoutes.length) return []; + + const trips = gtfs_data.trips.filter(t => matchingRoutes.some(r => r.route_id === t.route_id)); + const stopIds = new Set( + gtfs_data.stop_times + .filter(st => trips.some(trip => trip.trip_id === st.trip_id)) + .map(st => st.stop_id) + ); + + return gtfs_data.stops.filter(s => stopIds.has(s.stop_id)); +} + +setInterval(async () => { + console.log("Refreshing static GTFS..."); + gtfs_data = await loadGtfsStaticInMemory(); +}, 24 * 60 * 60 * 1000); + +module.exports = { + getStops, + getStopsByRoute, + getRoutes, + getTrains, + getBuses, + getTrainsByRoute, + getBusesByRoute, + getAlerts, + getAlertsByRoute, + getScheduleByRoute, + getScheduleByStationId, + getShapeByRoute, + + updateGtfsRt, + loadGtfsStaticInMemory, + gtfs_rt_v, + gtfs_rt_t, + gtfs_rt_a, +} diff --git a/tripUpdates.json b/tripUpdates.json deleted file mode 100644 index bb07295..0000000 --- a/tripUpdates.json +++ /dev/null @@ -1,69024 +0,0 @@ -{ - "header": { - "gtfsRealtimeVersion": "2.0", - "incrementality": "FULL_DATASET", - "timestamp": "1763602907" - }, - "entity": [ - { - "id": "5526893_19005", - "tripUpdate": { - "trip": { - "tripId": "5526893", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 3, - "arrival": { - "time": "1763602897" - }, - "departure": { - "time": "1763602914" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 4, - "arrival": { - "time": "1763602950" - }, - "departure": { - "time": "1763602968" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 5, - "arrival": { - "time": "1763602994" - }, - "departure": { - "time": "1763603008" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 6, - "arrival": { - "time": "1763603057" - }, - "departure": { - "time": "1763603140" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 7, - "arrival": { - "time": "1763603157" - }, - "departure": { - "time": "1763603169" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763603238" - }, - "departure": { - "time": "1763603250" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603254" - }, - "departure": { - "time": "1763603272" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603288" - }, - "departure": { - "time": "1763603299" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603341" - }, - "departure": { - "time": "1763603405" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603538" - }, - "departure": { - "time": "1763603552" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603616" - }, - "departure": { - "time": "1763603638" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603707" - }, - "departure": { - "time": "1763603720" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603770" - }, - "departure": { - "time": "1763603794" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603839" - }, - "departure": { - "time": "1763603874" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603882" - }, - "departure": { - "time": "1763604092" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763604121" - }, - "departure": { - "time": "1763604145" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763604199" - }, - "departure": { - "time": "1763604265" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763604287" - }, - "departure": { - "time": "1763604328" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763604377" - }, - "departure": { - "time": "1763604399" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763604409" - }, - "departure": { - "time": "1763604441" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763604459" - }, - "departure": { - "time": "1763604473" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763604494" - }, - "departure": { - "time": "1763604597" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763604616" - }, - "departure": { - "time": "1763604633" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763604641" - }, - "departure": { - "time": "1763604649" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763604658" - }, - "departure": { - "time": "1763604682" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763604728" - }, - "departure": { - "time": "1763604769" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763604809" - }, - "departure": { - "time": "1763604838" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763604912" - }, - "departure": { - "time": "1763604929" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763604981" - }, - "departure": { - "time": "1763605178" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763605201" - }, - "departure": { - "time": "1763605215" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763605219" - }, - "departure": { - "time": "1763605229" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763605292" - }, - "departure": { - "time": "1763605302" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763605305" - }, - "departure": { - "time": "1763605313" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763605326" - }, - "departure": { - "time": "1763605349" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763605365" - }, - "departure": { - "time": "1763605381" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763605398" - }, - "departure": { - "time": "1763605415" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763605431" - }, - "departure": { - "time": "1763605452" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763605518" - }, - "departure": { - "time": "1763605578" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763605595" - }, - "departure": { - "time": "1763605608" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763605616" - }, - "departure": { - "time": "1763605624" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763605631" - }, - "departure": { - "time": "1763605651" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763605666" - }, - "departure": { - "time": "1763605677" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763605711" - }, - "departure": { - "time": "1763605800" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763605814" - }, - "departure": { - "time": "1763605825" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763605842" - }, - "departure": { - "time": "1763605854" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763605884" - }, - "departure": { - "time": "1763605909" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763605941" - }, - "departure": { - "time": "1763606016" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763606021" - }, - "departure": { - "time": "1763606029" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763606062" - }, - "departure": { - "time": "1763606076" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763606094" - }, - "departure": { - "time": "1763606106" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763606138" - }, - "departure": { - "time": "1763606150" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763606219" - }, - "departure": { - "time": "1763606232" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763606255" - }, - "departure": { - "time": "1763606263" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "19005" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5528615_20002", - "tripUpdate": { - "trip": { - "tripId": "5528615", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 3, - "arrival": { - "time": "1763602959" - }, - "departure": { - "time": "1763602972" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 4, - "arrival": { - "time": "1763602974" - }, - "departure": { - "time": "1763602983" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 5, - "arrival": { - "time": "1763602996" - }, - "departure": { - "time": "1763603005" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 6, - "arrival": { - "time": "1763603022" - }, - "departure": { - "time": "1763603031" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 7, - "arrival": { - "time": "1763603039" - }, - "departure": { - "time": "1763603050" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763603120" - }, - "departure": { - "time": "1763603135" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603147" - }, - "departure": { - "time": "1763603162" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603174" - }, - "departure": { - "time": "1763603185" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603215" - }, - "departure": { - "time": "1763603229" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603234" - }, - "departure": { - "time": "1763603243" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603251" - }, - "departure": { - "time": "1763603261" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603272" - }, - "departure": { - "time": "1763603282" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603285" - }, - "departure": { - "time": "1763603295" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603327" - }, - "departure": { - "time": "1763603344" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603449" - }, - "departure": { - "time": "1763603470" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603499" - }, - "departure": { - "time": "1763603511" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603566" - }, - "departure": { - "time": "1763603581" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603583" - }, - "departure": { - "time": "1763603594" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603596" - }, - "departure": { - "time": "1763603604" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603620" - }, - "departure": { - "time": "1763603629" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603643" - }, - "departure": { - "time": "1763603651" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603653" - }, - "departure": { - "time": "1763603661" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603672" - }, - "departure": { - "time": "1763603680" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603712" - }, - "departure": { - "time": "1763603720" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603739" - }, - "departure": { - "time": "1763603747" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603750" - }, - "departure": { - "time": "1763603765" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603783" - }, - "departure": { - "time": "1763603796" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603808" - }, - "departure": { - "time": "1763603815" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603821" - }, - "departure": { - "time": "1763603829" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603844" - }, - "departure": { - "time": "1763603852" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603864" - }, - "departure": { - "time": "1763603879" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603933" - }, - "departure": { - "time": "1763603943" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603950" - }, - "departure": { - "time": "1763603959" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603978" - }, - "departure": { - "time": "1763603986" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604009" - }, - "departure": { - "time": "1763604030" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604060" - }, - "departure": { - "time": "1763604060" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604086" - }, - "departure": { - "time": "1763604086" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604090" - }, - "departure": { - "time": "1763604098" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604117" - }, - "departure": { - "time": "1763604127" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604176" - }, - "departure": { - "time": "1763604224" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604246" - }, - "departure": { - "time": "1763604256" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604265" - }, - "departure": { - "time": "1763604274" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604292" - }, - "departure": { - "time": "1763604301" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604323" - }, - "departure": { - "time": "1763604332" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604365" - }, - "departure": { - "time": "1763604386" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763604410" - }, - "departure": { - "time": "1763604419" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763604445" - }, - "departure": { - "time": "1763604463" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763604510" - }, - "departure": { - "time": "1763604510" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763604534" - }, - "departure": { - "time": "1763604534" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763604544" - }, - "departure": { - "time": "1763604552" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763604568" - }, - "departure": { - "time": "1763604738" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763604754" - }, - "departure": { - "time": "1763604765" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763604786" - }, - "departure": { - "time": "1763604797" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763604810" - }, - "departure": { - "time": "1763604819" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763604908" - }, - "departure": { - "time": "1763604926" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763604959" - }, - "departure": { - "time": "1763604978" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763605049" - }, - "departure": { - "time": "1763605073" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763605108" - }, - "departure": { - "time": "1763605125" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763605134" - }, - "departure": { - "time": "1763605144" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763605163" - }, - "departure": { - "time": "1763605179" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763605193" - }, - "departure": { - "time": "1763605207" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763605224" - }, - "departure": { - "time": "1763605234" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763605240" - }, - "departure": { - "time": "1763605249" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763605256" - }, - "departure": { - "time": "1763605269" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763605296" - }, - "departure": { - "time": "1763605305" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763605318" - }, - "departure": { - "time": "1763605327" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763605369" - }, - "departure": { - "time": "1763605385" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763605419" - }, - "departure": { - "time": "1763605432" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763605450" - }, - "departure": { - "time": "1763605517" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763605545" - }, - "departure": { - "time": "1763605568" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763605568" - }, - "departure": { - "time": "1763605694" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763605716" - }, - "departure": { - "time": "1763605735" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763605792" - }, - "departure": { - "time": "1763605803" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763605828" - }, - "departure": { - "time": "1763605843" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763605906" - }, - "departure": { - "time": "1763605920" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763605970" - }, - "departure": { - "time": "1763605978" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763605993" - }, - "departure": { - "time": "1763606014" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763606041" - }, - "departure": { - "time": "1763606051" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763606087" - }, - "departure": { - "time": "1763606096" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763606196" - }, - "departure": { - "time": "1763606210" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "20002" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5529588_22101", - "tripUpdate": { - "trip": { - "tripId": "5529588", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 3, - "arrival": { - "time": "1763602840" - }, - "departure": { - "time": "1763602941" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 4, - "arrival": { - "time": "1763602976" - }, - "departure": { - "time": "1763603019" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 5, - "arrival": { - "time": "1763603047" - }, - "departure": { - "time": "1763603095" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 6, - "arrival": { - "time": "1763603152" - }, - "departure": { - "time": "1763603213" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 7, - "arrival": { - "time": "1763603260" - }, - "departure": { - "time": "1763603295" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763603349" - }, - "departure": { - "time": "1763603407" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603474" - }, - "departure": { - "time": "1763603507" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603635" - }, - "departure": { - "time": "1763603706" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603735" - }, - "departure": { - "time": "1763603768" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603881" - }, - "departure": { - "time": "1763603937" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "22101" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5530786_18207", - "tripUpdate": { - "trip": { - "tripId": "5530786", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 3, - "arrival": { - "time": "1763602991" - }, - "departure": { - "time": "1763603037" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 4, - "arrival": { - "time": "1763603037" - }, - "departure": { - "time": "1763603037" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 5, - "arrival": { - "time": "1763603077" - }, - "departure": { - "time": "1763603088" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 6, - "arrival": { - "time": "1763603152" - }, - "departure": { - "time": "1763603188" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 7, - "arrival": { - "time": "1763603198" - }, - "departure": { - "time": "1763603211" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763603213" - }, - "departure": { - "time": "1763603220" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603227" - }, - "departure": { - "time": "1763603235" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603248" - }, - "departure": { - "time": "1763603255" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603308" - }, - "departure": { - "time": "1763603331" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603367" - }, - "departure": { - "time": "1763603373" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603380" - }, - "departure": { - "time": "1763603387" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603471" - }, - "departure": { - "time": "1763603512" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603558" - }, - "departure": { - "time": "1763603564" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603637" - }, - "departure": { - "time": "1763603673" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603764" - }, - "departure": { - "time": "1763603780" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "18207" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5523896_15021", - "tripUpdate": { - "trip": { - "tripId": "5523896", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 4, - "arrival": { - "time": "1763602883" - }, - "departure": { - "time": "1763602938" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 5, - "arrival": { - "time": "1763603237" - }, - "departure": { - "time": "1763603250" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 6, - "arrival": { - "time": "1763603252" - }, - "departure": { - "time": "1763603258" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 7, - "arrival": { - "time": "1763603297" - }, - "departure": { - "time": "1763603306" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763603336" - }, - "departure": { - "time": "1763603345" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603377" - }, - "departure": { - "time": "1763603385" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603398" - }, - "departure": { - "time": "1763603414" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603432" - }, - "departure": { - "time": "1763603458" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603508" - }, - "departure": { - "time": "1763603521" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603566" - }, - "departure": { - "time": "1763603580" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603605" - }, - "departure": { - "time": "1763603677" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603691" - }, - "departure": { - "time": "1763603700" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603764" - }, - "departure": { - "time": "1763603775" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603784" - }, - "departure": { - "time": "1763603793" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603807" - }, - "departure": { - "time": "1763603816" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603941" - }, - "departure": { - "time": "1763603971" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763604000" - }, - "departure": { - "time": "1763604018" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763604150" - }, - "departure": { - "time": "1763604160" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763604182" - }, - "departure": { - "time": "1763604203" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763604252" - }, - "departure": { - "time": "1763604266" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763604274" - }, - "departure": { - "time": "1763604283" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763604295" - }, - "departure": { - "time": "1763604306" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763604312" - }, - "departure": { - "time": "1763604321" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763604342" - }, - "departure": { - "time": "1763604367" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763604386" - }, - "departure": { - "time": "1763604394" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763604408" - }, - "departure": { - "time": "1763604430" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763604472" - }, - "departure": { - "time": "1763604481" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763604489" - }, - "departure": { - "time": "1763604497" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763604811" - }, - "departure": { - "time": "1763604831" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "15021" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5529706_22108", - "tripUpdate": { - "trip": { - "tripId": "5529706", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 4, - "arrival": { - "time": "1763603123" - }, - "departure": { - "time": "1763603123" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 5, - "arrival": { - "time": "1763603243" - }, - "departure": { - "time": "1763603243" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 6, - "arrival": { - "time": "1763603363" - }, - "departure": { - "time": "1763603363" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 7, - "arrival": { - "time": "1763603483" - }, - "departure": { - "time": "1763603483" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763603603" - }, - "departure": { - "time": "1763603603" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603663" - }, - "departure": { - "time": "1763603663" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603783" - }, - "departure": { - "time": "1763603783" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603843" - }, - "departure": { - "time": "1763603843" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763604023" - }, - "departure": { - "time": "1763604023" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "22108" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5530720_24204", - "tripUpdate": { - "trip": { - "tripId": "5530720", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 4, - "arrival": { - "time": "1763602979" - }, - "departure": { - "time": "1763602979" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 5, - "arrival": { - "time": "1763603113" - }, - "departure": { - "time": "1763603113" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 6, - "arrival": { - "time": "1763603178" - }, - "departure": { - "time": "1763603178" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 7, - "arrival": { - "time": "1763603235" - }, - "departure": { - "time": "1763603235" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763603295" - }, - "departure": { - "time": "1763603295" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603339" - }, - "departure": { - "time": "1763603339" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603375" - }, - "departure": { - "time": "1763603375" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603413" - }, - "departure": { - "time": "1763603413" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603486" - }, - "departure": { - "time": "1763603486" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603524" - }, - "departure": { - "time": "1763603524" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603597" - }, - "departure": { - "time": "1763603597" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603669" - }, - "departure": { - "time": "1763603669" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603690" - }, - "departure": { - "time": "1763603690" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603773" - }, - "departure": { - "time": "1763603773" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "24204" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5535354_24207", - "tripUpdate": { - "trip": { - "tripId": "5535354", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 4, - "arrival": { - "time": "1763602969" - }, - "departure": { - "time": "1763602969" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 5, - "arrival": { - "time": "1763603019" - }, - "departure": { - "time": "1763603019" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 6, - "arrival": { - "time": "1763603074" - }, - "departure": { - "time": "1763603074" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 7, - "arrival": { - "time": "1763603093" - }, - "departure": { - "time": "1763603093" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763603176" - }, - "departure": { - "time": "1763603176" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603202" - }, - "departure": { - "time": "1763603202" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603243" - }, - "departure": { - "time": "1763603243" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603257" - }, - "departure": { - "time": "1763603257" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603280" - }, - "departure": { - "time": "1763603280" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603309" - }, - "departure": { - "time": "1763603309" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603333" - }, - "departure": { - "time": "1763603333" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603351" - }, - "departure": { - "time": "1763603351" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603393" - }, - "departure": { - "time": "1763603393" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603463" - }, - "departure": { - "time": "1763603463" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603693" - }, - "departure": { - "time": "1763603693" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "24207" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5618171_21013", - "tripUpdate": { - "trip": { - "tripId": "5618171", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 4, - "arrival": { - "time": "1763602987" - }, - "departure": { - "time": "1763602987" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 5, - "arrival": { - "time": "1763603009" - }, - "departure": { - "time": "1763603009" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 6, - "arrival": { - "time": "1763603051" - }, - "departure": { - "time": "1763603051" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 7, - "arrival": { - "time": "1763603121" - }, - "departure": { - "time": "1763603121" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763603189" - }, - "departure": { - "time": "1763603189" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603232" - }, - "departure": { - "time": "1763603232" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603280" - }, - "departure": { - "time": "1763603280" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603341" - }, - "departure": { - "time": "1763603341" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603428" - }, - "departure": { - "time": "1763603428" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603453" - }, - "departure": { - "time": "1763603453" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603500" - }, - "departure": { - "time": "1763603500" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603544" - }, - "departure": { - "time": "1763603544" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603582" - }, - "departure": { - "time": "1763603582" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603605" - }, - "departure": { - "time": "1763603605" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603625" - }, - "departure": { - "time": "1763603625" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603693" - }, - "departure": { - "time": "1763603693" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603719" - }, - "departure": { - "time": "1763603719" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603752" - }, - "departure": { - "time": "1763603752" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603788" - }, - "departure": { - "time": "1763603788" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603814" - }, - "departure": { - "time": "1763603814" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603863" - }, - "departure": { - "time": "1763603863" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603908" - }, - "departure": { - "time": "1763603908" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603994" - }, - "departure": { - "time": "1763603994" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763604090" - }, - "departure": { - "time": "1763604090" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763604118" - }, - "departure": { - "time": "1763604118" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763604141" - }, - "departure": { - "time": "1763604141" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763604156" - }, - "departure": { - "time": "1763604156" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763604208" - }, - "departure": { - "time": "1763604208" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763604265" - }, - "departure": { - "time": "1763604265" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604306" - }, - "departure": { - "time": "1763604306" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604366" - }, - "departure": { - "time": "1763604366" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604389" - }, - "departure": { - "time": "1763604389" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604441" - }, - "departure": { - "time": "1763604441" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604478" - }, - "departure": { - "time": "1763604478" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604519" - }, - "departure": { - "time": "1763604519" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604579" - }, - "departure": { - "time": "1763604579" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604602" - }, - "departure": { - "time": "1763604602" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604632" - }, - "departure": { - "time": "1763604632" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604673" - }, - "departure": { - "time": "1763604673" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604748" - }, - "departure": { - "time": "1763604748" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604785" - }, - "departure": { - "time": "1763604785" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604829" - }, - "departure": { - "time": "1763604829" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604872" - }, - "departure": { - "time": "1763604872" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604935" - }, - "departure": { - "time": "1763604935" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763604972" - }, - "departure": { - "time": "1763604972" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763605003" - }, - "departure": { - "time": "1763605003" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763605030" - }, - "departure": { - "time": "1763605030" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763605090" - }, - "departure": { - "time": "1763605090" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763605122" - }, - "departure": { - "time": "1763605122" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763605174" - }, - "departure": { - "time": "1763605174" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763605217" - }, - "departure": { - "time": "1763605217" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763605260" - }, - "departure": { - "time": "1763605260" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763605319" - }, - "departure": { - "time": "1763605319" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763605438" - }, - "departure": { - "time": "1763605438" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763605475" - }, - "departure": { - "time": "1763605475" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763605502" - }, - "departure": { - "time": "1763605502" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763605588" - }, - "departure": { - "time": "1763605588" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763605649" - }, - "departure": { - "time": "1763605649" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763605690" - }, - "departure": { - "time": "1763605690" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763605720" - }, - "departure": { - "time": "1763605720" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763605747" - }, - "departure": { - "time": "1763605747" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763605780" - }, - "departure": { - "time": "1763605780" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763605821" - }, - "departure": { - "time": "1763605821" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763605862" - }, - "departure": { - "time": "1763605862" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763605905" - }, - "departure": { - "time": "1763605905" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763605951" - }, - "departure": { - "time": "1763605951" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763606008" - }, - "departure": { - "time": "1763606008" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763606041" - }, - "departure": { - "time": "1763606041" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763606078" - }, - "departure": { - "time": "1763606078" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763606118" - }, - "departure": { - "time": "1763606118" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763606195" - }, - "departure": { - "time": "1763606195" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763606242" - }, - "departure": { - "time": "1763606242" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763606294" - }, - "departure": { - "time": "1763606294" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763606345" - }, - "departure": { - "time": "1763606345" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763606393" - }, - "departure": { - "time": "1763606393" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763606451" - }, - "departure": { - "time": "1763606451" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763606529" - }, - "departure": { - "time": "1763606529" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763606661" - }, - "departure": { - "time": "1763606661" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763606788" - }, - "departure": { - "time": "1763606788" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "21013" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5618400_11001", - "tripUpdate": { - "trip": { - "tripId": "5618400", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 4, - "arrival": { - "time": "1763602973" - }, - "departure": { - "time": "1763602973" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 5, - "arrival": { - "time": "1763604236" - }, - "departure": { - "time": "1763604236" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 6, - "arrival": { - "time": "1763604259" - }, - "departure": { - "time": "1763604259" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 7, - "arrival": { - "time": "1763604279" - }, - "departure": { - "time": "1763604279" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763604302" - }, - "departure": { - "time": "1763604302" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763604337" - }, - "departure": { - "time": "1763604337" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763604373" - }, - "departure": { - "time": "1763604373" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763604410" - }, - "departure": { - "time": "1763604410" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763604463" - }, - "departure": { - "time": "1763604463" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763604513" - }, - "departure": { - "time": "1763604513" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763604558" - }, - "departure": { - "time": "1763604558" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763604634" - }, - "departure": { - "time": "1763604634" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763604661" - }, - "departure": { - "time": "1763604661" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763604698" - }, - "departure": { - "time": "1763604698" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763604736" - }, - "departure": { - "time": "1763604736" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763604800" - }, - "departure": { - "time": "1763604800" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "11001" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5524182_13009", - "tripUpdate": { - "trip": { - "tripId": "5524182", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 5, - "arrival": { - "time": "1763603104" - }, - "departure": { - "time": "1763603104" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 6, - "arrival": { - "time": "1763603183" - }, - "departure": { - "time": "1763603183" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 7, - "arrival": { - "time": "1763603210" - }, - "departure": { - "time": "1763603210" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763603318" - }, - "departure": { - "time": "1763603318" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603354" - }, - "departure": { - "time": "1763603354" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603410" - }, - "departure": { - "time": "1763603410" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603452" - }, - "departure": { - "time": "1763603452" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603510" - }, - "departure": { - "time": "1763603510" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603577" - }, - "departure": { - "time": "1763603577" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603623" - }, - "departure": { - "time": "1763603623" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603667" - }, - "departure": { - "time": "1763603667" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603696" - }, - "departure": { - "time": "1763603696" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603749" - }, - "departure": { - "time": "1763603749" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603785" - }, - "departure": { - "time": "1763603785" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603827" - }, - "departure": { - "time": "1763603827" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603864" - }, - "departure": { - "time": "1763603864" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603902" - }, - "departure": { - "time": "1763603902" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603942" - }, - "departure": { - "time": "1763603942" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603983" - }, - "departure": { - "time": "1763603983" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763604032" - }, - "departure": { - "time": "1763604032" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763604110" - }, - "departure": { - "time": "1763604110" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763604166" - }, - "departure": { - "time": "1763604166" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763604288" - }, - "departure": { - "time": "1763604288" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763604332" - }, - "departure": { - "time": "1763604332" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763604568" - }, - "departure": { - "time": "1763604568" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763604655" - }, - "departure": { - "time": "1763604655" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763604710" - }, - "departure": { - "time": "1763604710" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763604774" - }, - "departure": { - "time": "1763604774" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604810" - }, - "departure": { - "time": "1763604810" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604847" - }, - "departure": { - "time": "1763604847" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604878" - }, - "departure": { - "time": "1763604878" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604952" - }, - "departure": { - "time": "1763604952" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763605010" - }, - "departure": { - "time": "1763605010" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763605085" - }, - "departure": { - "time": "1763605085" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763605173" - }, - "departure": { - "time": "1763605173" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763605252" - }, - "departure": { - "time": "1763605252" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763605325" - }, - "departure": { - "time": "1763605325" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763605415" - }, - "departure": { - "time": "1763605415" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763605472" - }, - "departure": { - "time": "1763605472" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763605499" - }, - "departure": { - "time": "1763605499" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763605610" - }, - "departure": { - "time": "1763605610" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "13009" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525046_17048", - "tripUpdate": { - "trip": { - "tripId": "5525046", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 5, - "arrival": { - "time": "1763602905" - }, - "departure": { - "time": "1763602905" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 6, - "arrival": { - "time": "1763602972" - }, - "departure": { - "time": "1763602972" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 7, - "arrival": { - "time": "1763603003" - }, - "departure": { - "time": "1763603003" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763603050" - }, - "departure": { - "time": "1763603050" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603098" - }, - "departure": { - "time": "1763603098" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603146" - }, - "departure": { - "time": "1763603146" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603194" - }, - "departure": { - "time": "1763603194" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603265" - }, - "departure": { - "time": "1763603265" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603304" - }, - "departure": { - "time": "1763603304" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603347" - }, - "departure": { - "time": "1763603347" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603393" - }, - "departure": { - "time": "1763603393" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603429" - }, - "departure": { - "time": "1763603429" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603522" - }, - "departure": { - "time": "1763603522" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603565" - }, - "departure": { - "time": "1763603565" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603647" - }, - "departure": { - "time": "1763603647" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603755" - }, - "departure": { - "time": "1763603755" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603824" - }, - "departure": { - "time": "1763603824" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603875" - }, - "departure": { - "time": "1763603875" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603925" - }, - "departure": { - "time": "1763603925" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603979" - }, - "departure": { - "time": "1763603979" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763604032" - }, - "departure": { - "time": "1763604032" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763604096" - }, - "departure": { - "time": "1763604096" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763604112" - }, - "departure": { - "time": "1763604112" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763604152" - }, - "departure": { - "time": "1763604152" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763604186" - }, - "departure": { - "time": "1763604186" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763604214" - }, - "departure": { - "time": "1763604214" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763604257" - }, - "departure": { - "time": "1763604257" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763604303" - }, - "departure": { - "time": "1763604303" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604345" - }, - "departure": { - "time": "1763604345" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604369" - }, - "departure": { - "time": "1763604369" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604413" - }, - "departure": { - "time": "1763604413" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604460" - }, - "departure": { - "time": "1763604460" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604521" - }, - "departure": { - "time": "1763604521" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604539" - }, - "departure": { - "time": "1763604539" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604575" - }, - "departure": { - "time": "1763604575" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604613" - }, - "departure": { - "time": "1763604613" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604649" - }, - "departure": { - "time": "1763604649" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604691" - }, - "departure": { - "time": "1763604691" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604765" - }, - "departure": { - "time": "1763604765" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604809" - }, - "departure": { - "time": "1763604809" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604828" - }, - "departure": { - "time": "1763604828" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604883" - }, - "departure": { - "time": "1763604883" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604918" - }, - "departure": { - "time": "1763604918" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763604945" - }, - "departure": { - "time": "1763604945" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763604990" - }, - "departure": { - "time": "1763604990" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763605036" - }, - "departure": { - "time": "1763605036" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763605064" - }, - "departure": { - "time": "1763605064" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763605086" - }, - "departure": { - "time": "1763605086" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763605118" - }, - "departure": { - "time": "1763605118" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763605187" - }, - "departure": { - "time": "1763605187" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763605245" - }, - "departure": { - "time": "1763605245" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763605310" - }, - "departure": { - "time": "1763605310" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763605364" - }, - "departure": { - "time": "1763605364" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763605411" - }, - "departure": { - "time": "1763605411" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763605449" - }, - "departure": { - "time": "1763605449" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763605470" - }, - "departure": { - "time": "1763605470" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763605512" - }, - "departure": { - "time": "1763605512" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763605563" - }, - "departure": { - "time": "1763605563" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763605605" - }, - "departure": { - "time": "1763605605" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763605620" - }, - "departure": { - "time": "1763605620" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763605694" - }, - "departure": { - "time": "1763605694" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763605733" - }, - "departure": { - "time": "1763605733" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763605762" - }, - "departure": { - "time": "1763605762" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763605807" - }, - "departure": { - "time": "1763605807" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763605861" - }, - "departure": { - "time": "1763605861" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763605905" - }, - "departure": { - "time": "1763605905" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763605973" - }, - "departure": { - "time": "1763605973" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763606038" - }, - "departure": { - "time": "1763606038" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763606103" - }, - "departure": { - "time": "1763606103" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763606160" - }, - "departure": { - "time": "1763606160" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763606265" - }, - "departure": { - "time": "1763606265" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17048" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525815_L20", - "tripUpdate": { - "trip": { - "tripId": "5525815", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 5, - "arrival": { - "time": "1763604087" - }, - "departure": { - "time": "1763604087" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 6, - "arrival": { - "time": "1763604447" - }, - "departure": { - "time": "1763604447" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 7, - "arrival": { - "time": "1763605107" - }, - "departure": { - "time": "1763605107" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763605647" - }, - "departure": { - "time": "1763605647" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763606007" - }, - "departure": { - "time": "1763606007" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763606127" - }, - "departure": { - "time": "1763606127" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763606667" - }, - "departure": { - "time": "1763606667" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763607267" - }, - "departure": { - "time": "1763607267" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763607807" - }, - "departure": { - "time": "1763607807" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763608167" - }, - "departure": { - "time": "1763608167" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763608647" - }, - "departure": { - "time": "1763608647" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763609187" - }, - "departure": { - "time": "1763609187" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "L20" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5528461_20003", - "tripUpdate": { - "trip": { - "tripId": "5528461", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 5, - "arrival": { - "time": "1763602920" - }, - "departure": { - "time": "1763602920" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 6, - "arrival": { - "time": "1763602944" - }, - "departure": { - "time": "1763602944" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 7, - "arrival": { - "time": "1763602973" - }, - "departure": { - "time": "1763602973" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763602992" - }, - "departure": { - "time": "1763602992" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603015" - }, - "departure": { - "time": "1763603015" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603029" - }, - "departure": { - "time": "1763603029" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603041" - }, - "departure": { - "time": "1763603041" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603061" - }, - "departure": { - "time": "1763603061" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603071" - }, - "departure": { - "time": "1763603071" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603091" - }, - "departure": { - "time": "1763603091" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603101" - }, - "departure": { - "time": "1763603101" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603135" - }, - "departure": { - "time": "1763603135" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603154" - }, - "departure": { - "time": "1763603154" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603163" - }, - "departure": { - "time": "1763603163" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603177" - }, - "departure": { - "time": "1763603177" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603207" - }, - "departure": { - "time": "1763603207" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603233" - }, - "departure": { - "time": "1763603233" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603242" - }, - "departure": { - "time": "1763603242" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603267" - }, - "departure": { - "time": "1763603267" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603291" - }, - "departure": { - "time": "1763603291" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603315" - }, - "departure": { - "time": "1763603315" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603344" - }, - "departure": { - "time": "1763603344" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603411" - }, - "departure": { - "time": "1763603411" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603454" - }, - "departure": { - "time": "1763603454" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603503" - }, - "departure": { - "time": "1763603503" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603524" - }, - "departure": { - "time": "1763603524" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603547" - }, - "departure": { - "time": "1763603547" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603573" - }, - "departure": { - "time": "1763603573" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603595" - }, - "departure": { - "time": "1763603595" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603619" - }, - "departure": { - "time": "1763603619" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603650" - }, - "departure": { - "time": "1763603650" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603735" - }, - "departure": { - "time": "1763603735" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604095" - }, - "departure": { - "time": "1763604095" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "20003" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5530780_18201", - "tripUpdate": { - "trip": { - "tripId": "5530780", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 5, - "arrival": { - "time": "1763602982" - }, - "departure": { - "time": "1763602982" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 6, - "arrival": { - "time": "1763603060" - }, - "departure": { - "time": "1763603060" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 7, - "arrival": { - "time": "1763603083" - }, - "departure": { - "time": "1763603083" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763603125" - }, - "departure": { - "time": "1763603125" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603152" - }, - "departure": { - "time": "1763603152" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603177" - }, - "departure": { - "time": "1763603177" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603209" - }, - "departure": { - "time": "1763603209" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603277" - }, - "departure": { - "time": "1763603277" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603383" - }, - "departure": { - "time": "1763603383" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603477" - }, - "departure": { - "time": "1763603477" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603580" - }, - "departure": { - "time": "1763603580" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603719" - }, - "departure": { - "time": "1763603719" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603809" - }, - "departure": { - "time": "1763603809" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603852" - }, - "departure": { - "time": "1763603852" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603897" - }, - "departure": { - "time": "1763603897" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "18201" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5575453_1108A", - "tripUpdate": { - "trip": { - "tripId": "5575453", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 5, - "arrival": { - "time": "1763603071" - }, - "departure": { - "time": "1763603071" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 6, - "arrival": { - "time": "1763603251" - }, - "departure": { - "time": "1763603251" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 7, - "arrival": { - "time": "1763603371" - }, - "departure": { - "time": "1763603371" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763603491" - }, - "departure": { - "time": "1763603491" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603611" - }, - "departure": { - "time": "1763603611" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603731" - }, - "departure": { - "time": "1763603731" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603851" - }, - "departure": { - "time": "1763603851" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763604031" - }, - "departure": { - "time": "1763604031" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763604151" - }, - "departure": { - "time": "1763604151" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763604271" - }, - "departure": { - "time": "1763604271" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763604511" - }, - "departure": { - "time": "1763604511" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763604571" - }, - "departure": { - "time": "1763604571" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763604751" - }, - "departure": { - "time": "1763604751" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763604931" - }, - "departure": { - "time": "1763604931" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763605171" - }, - "departure": { - "time": "1763605171" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "1108A" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5617670_17119", - "tripUpdate": { - "trip": { - "tripId": "5617670", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 5, - "arrival": { - "time": "1763603280" - }, - "departure": { - "time": "1763603280" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 6, - "arrival": { - "time": "1763603520" - }, - "departure": { - "time": "1763603520" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 7, - "arrival": { - "time": "1763603640" - }, - "departure": { - "time": "1763603640" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763603880" - }, - "departure": { - "time": "1763603880" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763604000" - }, - "departure": { - "time": "1763604000" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763604180" - }, - "departure": { - "time": "1763604180" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763604240" - }, - "departure": { - "time": "1763604240" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763604300" - }, - "departure": { - "time": "1763604300" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763604360" - }, - "departure": { - "time": "1763604360" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763604660" - }, - "departure": { - "time": "1763604660" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17119" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5718385_09036", - "tripUpdate": { - "trip": { - "tripId": "5718385", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 5, - "arrival": { - "time": "1763603175" - }, - "departure": { - "time": "1763603175" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 6, - "arrival": { - "time": "1763603237" - }, - "departure": { - "time": "1763603237" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 7, - "arrival": { - "time": "1763603295" - }, - "departure": { - "time": "1763603295" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763603329" - }, - "departure": { - "time": "1763603329" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603368" - }, - "departure": { - "time": "1763603368" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603406" - }, - "departure": { - "time": "1763603406" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603440" - }, - "departure": { - "time": "1763603440" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603458" - }, - "departure": { - "time": "1763603458" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603494" - }, - "departure": { - "time": "1763603494" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603549" - }, - "departure": { - "time": "1763603549" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603588" - }, - "departure": { - "time": "1763603588" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603650" - }, - "departure": { - "time": "1763603650" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603701" - }, - "departure": { - "time": "1763603701" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603727" - }, - "departure": { - "time": "1763603727" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603835" - }, - "departure": { - "time": "1763603835" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603961" - }, - "departure": { - "time": "1763603961" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603990" - }, - "departure": { - "time": "1763603990" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763604014" - }, - "departure": { - "time": "1763604014" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763604040" - }, - "departure": { - "time": "1763604040" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763604074" - }, - "departure": { - "time": "1763604074" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763604120" - }, - "departure": { - "time": "1763604120" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763604182" - }, - "departure": { - "time": "1763604182" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763604222" - }, - "departure": { - "time": "1763604222" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763604255" - }, - "departure": { - "time": "1763604255" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763604283" - }, - "departure": { - "time": "1763604283" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763604314" - }, - "departure": { - "time": "1763604314" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763604348" - }, - "departure": { - "time": "1763604348" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763604404" - }, - "departure": { - "time": "1763604404" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604427" - }, - "departure": { - "time": "1763604427" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604448" - }, - "departure": { - "time": "1763604448" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604495" - }, - "departure": { - "time": "1763604495" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604534" - }, - "departure": { - "time": "1763604534" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604571" - }, - "departure": { - "time": "1763604571" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604624" - }, - "departure": { - "time": "1763604624" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604672" - }, - "departure": { - "time": "1763604672" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604713" - }, - "departure": { - "time": "1763604713" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604756" - }, - "departure": { - "time": "1763604756" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604855" - }, - "departure": { - "time": "1763604855" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604905" - }, - "departure": { - "time": "1763604905" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604971" - }, - "departure": { - "time": "1763604971" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763605024" - }, - "departure": { - "time": "1763605024" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763605091" - }, - "departure": { - "time": "1763605091" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763605138" - }, - "departure": { - "time": "1763605138" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763605173" - }, - "departure": { - "time": "1763605173" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763605275" - }, - "departure": { - "time": "1763605275" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "09036" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5524913_24002", - "tripUpdate": { - "trip": { - "tripId": "5524913", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 6, - "arrival": { - "time": "1763603001" - }, - "departure": { - "time": "1763603001" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 7, - "arrival": { - "time": "1763603030" - }, - "departure": { - "time": "1763603030" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763603096" - }, - "departure": { - "time": "1763603096" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603184" - }, - "departure": { - "time": "1763603184" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603252" - }, - "departure": { - "time": "1763603252" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603284" - }, - "departure": { - "time": "1763603284" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603340" - }, - "departure": { - "time": "1763603340" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603404" - }, - "departure": { - "time": "1763603404" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603493" - }, - "departure": { - "time": "1763603493" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603580" - }, - "departure": { - "time": "1763603580" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603636" - }, - "departure": { - "time": "1763603636" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603726" - }, - "departure": { - "time": "1763603726" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603808" - }, - "departure": { - "time": "1763603808" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603880" - }, - "departure": { - "time": "1763603880" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763604042" - }, - "departure": { - "time": "1763604042" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763604136" - }, - "departure": { - "time": "1763604136" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763604216" - }, - "departure": { - "time": "1763604216" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763604265" - }, - "departure": { - "time": "1763604265" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763604316" - }, - "departure": { - "time": "1763604316" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763604366" - }, - "departure": { - "time": "1763604366" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763604420" - }, - "departure": { - "time": "1763604420" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763604462" - }, - "departure": { - "time": "1763604462" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763604497" - }, - "departure": { - "time": "1763604497" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763604532" - }, - "departure": { - "time": "1763604532" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763604595" - }, - "departure": { - "time": "1763604595" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763604649" - }, - "departure": { - "time": "1763604649" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763604697" - }, - "departure": { - "time": "1763604697" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604726" - }, - "departure": { - "time": "1763604726" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604797" - }, - "departure": { - "time": "1763604797" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604840" - }, - "departure": { - "time": "1763604840" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604900" - }, - "departure": { - "time": "1763604900" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604972" - }, - "departure": { - "time": "1763604972" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763605024" - }, - "departure": { - "time": "1763605024" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763605080" - }, - "departure": { - "time": "1763605080" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763605136" - }, - "departure": { - "time": "1763605136" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763605224" - }, - "departure": { - "time": "1763605224" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763605284" - }, - "departure": { - "time": "1763605284" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763605340" - }, - "departure": { - "time": "1763605340" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763605380" - }, - "departure": { - "time": "1763605380" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763605489" - }, - "departure": { - "time": "1763605489" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763605797" - }, - "departure": { - "time": "1763605797" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763605920" - }, - "departure": { - "time": "1763605920" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "24002" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525836_CC104", - "tripUpdate": { - "trip": { - "tripId": "5525836", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 6, - "arrival": { - "time": "1763603917" - }, - "departure": { - "time": "1763603917" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 7, - "arrival": { - "time": "1763604157" - }, - "departure": { - "time": "1763604157" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763604397" - }, - "departure": { - "time": "1763604397" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763604997" - }, - "departure": { - "time": "1763604997" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763605477" - }, - "departure": { - "time": "1763605477" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763605837" - }, - "departure": { - "time": "1763605837" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763606617" - }, - "departure": { - "time": "1763606617" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763607097" - }, - "departure": { - "time": "1763607097" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763607577" - }, - "departure": { - "time": "1763607577" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763607817" - }, - "departure": { - "time": "1763607817" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763608297" - }, - "departure": { - "time": "1763608297" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "CC104" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5530198_11019", - "tripUpdate": { - "trip": { - "tripId": "5530198", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 6, - "arrival": { - "time": "1763602998" - }, - "departure": { - "time": "1763602998" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 7, - "arrival": { - "time": "1763603067" - }, - "departure": { - "time": "1763603067" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763603108" - }, - "departure": { - "time": "1763603108" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603148" - }, - "departure": { - "time": "1763603148" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603178" - }, - "departure": { - "time": "1763603178" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603201" - }, - "departure": { - "time": "1763603201" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603238" - }, - "departure": { - "time": "1763603238" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603295" - }, - "departure": { - "time": "1763603295" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603320" - }, - "departure": { - "time": "1763603320" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603367" - }, - "departure": { - "time": "1763603367" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603413" - }, - "departure": { - "time": "1763603413" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603447" - }, - "departure": { - "time": "1763603447" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603465" - }, - "departure": { - "time": "1763603465" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603491" - }, - "departure": { - "time": "1763603491" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603515" - }, - "departure": { - "time": "1763603515" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603538" - }, - "departure": { - "time": "1763603538" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603568" - }, - "departure": { - "time": "1763603568" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603592" - }, - "departure": { - "time": "1763603592" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603615" - }, - "departure": { - "time": "1763603615" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603645" - }, - "departure": { - "time": "1763603645" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603667" - }, - "departure": { - "time": "1763603667" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603709" - }, - "departure": { - "time": "1763603709" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603728" - }, - "departure": { - "time": "1763603728" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603760" - }, - "departure": { - "time": "1763603760" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603779" - }, - "departure": { - "time": "1763603779" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603795" - }, - "departure": { - "time": "1763603795" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603814" - }, - "departure": { - "time": "1763603814" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603835" - }, - "departure": { - "time": "1763603835" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603934" - }, - "departure": { - "time": "1763603934" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603958" - }, - "departure": { - "time": "1763603958" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604034" - }, - "departure": { - "time": "1763604034" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604087" - }, - "departure": { - "time": "1763604087" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604139" - }, - "departure": { - "time": "1763604139" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604180" - }, - "departure": { - "time": "1763604180" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604285" - }, - "departure": { - "time": "1763604285" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604343" - }, - "departure": { - "time": "1763604343" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604412" - }, - "departure": { - "time": "1763604412" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604558" - }, - "departure": { - "time": "1763604558" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "11019" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5530345_18101", - "tripUpdate": { - "trip": { - "tripId": "5530345", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 6, - "arrival": { - "time": "1763602943" - }, - "departure": { - "time": "1763602943" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 7, - "arrival": { - "time": "1763603011" - }, - "departure": { - "time": "1763603011" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763603100" - }, - "departure": { - "time": "1763603100" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603122" - }, - "departure": { - "time": "1763603122" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603141" - }, - "departure": { - "time": "1763603141" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603220" - }, - "departure": { - "time": "1763603220" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603301" - }, - "departure": { - "time": "1763603301" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603354" - }, - "departure": { - "time": "1763603354" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603460" - }, - "departure": { - "time": "1763603460" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603555" - }, - "departure": { - "time": "1763603555" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603588" - }, - "departure": { - "time": "1763603588" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603634" - }, - "departure": { - "time": "1763603634" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603690" - }, - "departure": { - "time": "1763603690" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603799" - }, - "departure": { - "time": "1763603799" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603866" - }, - "departure": { - "time": "1763603866" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763604177" - }, - "departure": { - "time": "1763604177" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763604180" - }, - "departure": { - "time": "1763604180" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763604180" - }, - "departure": { - "time": "1763604180" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763604451" - }, - "departure": { - "time": "1763604451" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763604470" - }, - "departure": { - "time": "1763604470" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763604517" - }, - "departure": { - "time": "1763604517" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763604545" - }, - "departure": { - "time": "1763604545" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763604660" - }, - "departure": { - "time": "1763604660" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "18101" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5575052_23214", - "tripUpdate": { - "trip": { - "tripId": "5575052", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 6, - "arrival": { - "time": "1763602852" - }, - "departure": { - "time": "1763602852" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 7, - "arrival": { - "time": "1763602902" - }, - "departure": { - "time": "1763602902" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763602932" - }, - "departure": { - "time": "1763602932" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763602961" - }, - "departure": { - "time": "1763602961" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603017" - }, - "departure": { - "time": "1763603017" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603059" - }, - "departure": { - "time": "1763603059" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603122" - }, - "departure": { - "time": "1763603122" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603163" - }, - "departure": { - "time": "1763603163" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603197" - }, - "departure": { - "time": "1763603197" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603254" - }, - "departure": { - "time": "1763603254" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603308" - }, - "departure": { - "time": "1763603308" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603374" - }, - "departure": { - "time": "1763603374" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603415" - }, - "departure": { - "time": "1763603415" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603483" - }, - "departure": { - "time": "1763603483" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603511" - }, - "departure": { - "time": "1763603511" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603532" - }, - "departure": { - "time": "1763603532" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603617" - }, - "departure": { - "time": "1763603617" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23214" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5575530_1173A", - "tripUpdate": { - "trip": { - "tripId": "5575530", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 6, - "arrival": { - "time": "1763603233" - }, - "departure": { - "time": "1763603233" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 7, - "arrival": { - "time": "1763603353" - }, - "departure": { - "time": "1763603353" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763603533" - }, - "departure": { - "time": "1763603533" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603653" - }, - "departure": { - "time": "1763603653" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603773" - }, - "departure": { - "time": "1763603773" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603893" - }, - "departure": { - "time": "1763603893" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763604013" - }, - "departure": { - "time": "1763604013" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763604133" - }, - "departure": { - "time": "1763604133" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763604373" - }, - "departure": { - "time": "1763604373" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763604493" - }, - "departure": { - "time": "1763604493" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763604613" - }, - "departure": { - "time": "1763604613" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763604733" - }, - "departure": { - "time": "1763604733" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763604913" - }, - "departure": { - "time": "1763604913" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763605273" - }, - "departure": { - "time": "1763605273" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "1173A" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5617785_17105", - "tripUpdate": { - "trip": { - "tripId": "5617785", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 6, - "arrival": { - "time": "1763603080" - }, - "departure": { - "time": "1763603080" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 7, - "arrival": { - "time": "1763603320" - }, - "departure": { - "time": "1763603320" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763603440" - }, - "departure": { - "time": "1763603440" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603680" - }, - "departure": { - "time": "1763603680" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603860" - }, - "departure": { - "time": "1763603860" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763604040" - }, - "departure": { - "time": "1763604040" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763604220" - }, - "departure": { - "time": "1763604220" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763604400" - }, - "departure": { - "time": "1763604400" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763604820" - }, - "departure": { - "time": "1763604820" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17105" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5619655_1005B", - "tripUpdate": { - "trip": { - "tripId": "5619655", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 6, - "arrival": { - "time": "1763603044" - }, - "departure": { - "time": "1763603044" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 7, - "arrival": { - "time": "1763603164" - }, - "departure": { - "time": "1763603164" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763603284" - }, - "departure": { - "time": "1763603284" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603464" - }, - "departure": { - "time": "1763603464" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603584" - }, - "departure": { - "time": "1763603584" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603704" - }, - "departure": { - "time": "1763603704" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603884" - }, - "departure": { - "time": "1763603884" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763604004" - }, - "departure": { - "time": "1763604004" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763604124" - }, - "departure": { - "time": "1763604124" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763604244" - }, - "departure": { - "time": "1763604244" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763604424" - }, - "departure": { - "time": "1763604424" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763604544" - }, - "departure": { - "time": "1763604544" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763604664" - }, - "departure": { - "time": "1763604664" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763604844" - }, - "departure": { - "time": "1763604844" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763604904" - }, - "departure": { - "time": "1763604904" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763605024" - }, - "departure": { - "time": "1763605024" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763605204" - }, - "departure": { - "time": "1763605204" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763605324" - }, - "departure": { - "time": "1763605324" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763605444" - }, - "departure": { - "time": "1763605444" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "1005B" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5619754_1109B", - "tripUpdate": { - "trip": { - "tripId": "5619754", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 6, - "arrival": { - "time": "1763603027" - }, - "departure": { - "time": "1763603027" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 7, - "arrival": { - "time": "1763603147" - }, - "departure": { - "time": "1763603147" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763603267" - }, - "departure": { - "time": "1763603267" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603387" - }, - "departure": { - "time": "1763603387" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603447" - }, - "departure": { - "time": "1763603447" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603687" - }, - "departure": { - "time": "1763603687" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603867" - }, - "departure": { - "time": "1763603867" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603987" - }, - "departure": { - "time": "1763603987" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763604107" - }, - "departure": { - "time": "1763604107" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763604227" - }, - "departure": { - "time": "1763604227" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763604407" - }, - "departure": { - "time": "1763604407" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763604527" - }, - "departure": { - "time": "1763604527" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763604647" - }, - "departure": { - "time": "1763604647" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763604827" - }, - "departure": { - "time": "1763604827" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763604947" - }, - "departure": { - "time": "1763604947" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763605067" - }, - "departure": { - "time": "1763605067" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763605187" - }, - "departure": { - "time": "1763605187" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763605367" - }, - "departure": { - "time": "1763605367" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763605607" - }, - "departure": { - "time": "1763605607" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763605787" - }, - "departure": { - "time": "1763605787" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763605907" - }, - "departure": { - "time": "1763605907" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763606027" - }, - "departure": { - "time": "1763606027" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "1109B" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5526959_23025", - "tripUpdate": { - "trip": { - "tripId": "5526959", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 7, - "arrival": { - "time": "1763602941" - }, - "departure": { - "time": "1763602941" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763602989" - }, - "departure": { - "time": "1763602989" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603037" - }, - "departure": { - "time": "1763603037" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603075" - }, - "departure": { - "time": "1763603075" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603109" - }, - "departure": { - "time": "1763603109" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603175" - }, - "departure": { - "time": "1763603175" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603225" - }, - "departure": { - "time": "1763603225" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603289" - }, - "departure": { - "time": "1763603289" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603373" - }, - "departure": { - "time": "1763603373" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603420" - }, - "departure": { - "time": "1763603420" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603482" - }, - "departure": { - "time": "1763603482" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603529" - }, - "departure": { - "time": "1763603529" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603561" - }, - "departure": { - "time": "1763603561" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603614" - }, - "departure": { - "time": "1763603614" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603645" - }, - "departure": { - "time": "1763603645" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603696" - }, - "departure": { - "time": "1763603696" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603762" - }, - "departure": { - "time": "1763603762" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603829" - }, - "departure": { - "time": "1763603829" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603862" - }, - "departure": { - "time": "1763603862" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603908" - }, - "departure": { - "time": "1763603908" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603966" - }, - "departure": { - "time": "1763603966" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603989" - }, - "departure": { - "time": "1763603989" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763604027" - }, - "departure": { - "time": "1763604027" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763604060" - }, - "departure": { - "time": "1763604060" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763604091" - }, - "departure": { - "time": "1763604091" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763604127" - }, - "departure": { - "time": "1763604127" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604189" - }, - "departure": { - "time": "1763604189" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604226" - }, - "departure": { - "time": "1763604226" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604274" - }, - "departure": { - "time": "1763604274" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604324" - }, - "departure": { - "time": "1763604324" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604357" - }, - "departure": { - "time": "1763604357" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604429" - }, - "departure": { - "time": "1763604429" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604515" - }, - "departure": { - "time": "1763604515" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604609" - }, - "departure": { - "time": "1763604609" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604645" - }, - "departure": { - "time": "1763604645" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604729" - }, - "departure": { - "time": "1763604729" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604759" - }, - "departure": { - "time": "1763604759" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604809" - }, - "departure": { - "time": "1763604809" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604874" - }, - "departure": { - "time": "1763604874" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604901" - }, - "departure": { - "time": "1763604901" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604950" - }, - "departure": { - "time": "1763604950" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763605029" - }, - "departure": { - "time": "1763605029" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763605184" - }, - "departure": { - "time": "1763605184" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763605232" - }, - "departure": { - "time": "1763605232" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763605331" - }, - "departure": { - "time": "1763605331" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763605401" - }, - "departure": { - "time": "1763605401" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763605490" - }, - "departure": { - "time": "1763605490" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763605629" - }, - "departure": { - "time": "1763605629" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23025" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5527998_23018", - "tripUpdate": { - "trip": { - "tripId": "5527998", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 7, - "arrival": { - "time": "1763602952" - }, - "departure": { - "time": "1763602952" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763603016" - }, - "departure": { - "time": "1763603016" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603097" - }, - "departure": { - "time": "1763603097" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603138" - }, - "departure": { - "time": "1763603138" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603209" - }, - "departure": { - "time": "1763603209" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603272" - }, - "departure": { - "time": "1763603272" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603312" - }, - "departure": { - "time": "1763603312" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603629" - }, - "departure": { - "time": "1763603629" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603743" - }, - "departure": { - "time": "1763603743" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763604005" - }, - "departure": { - "time": "1763604005" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763604169" - }, - "departure": { - "time": "1763604169" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763604224" - }, - "departure": { - "time": "1763604224" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763604250" - }, - "departure": { - "time": "1763604250" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763604274" - }, - "departure": { - "time": "1763604274" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763604306" - }, - "departure": { - "time": "1763604306" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763604333" - }, - "departure": { - "time": "1763604333" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763604383" - }, - "departure": { - "time": "1763604383" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763604433" - }, - "departure": { - "time": "1763604433" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763604474" - }, - "departure": { - "time": "1763604474" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763604536" - }, - "departure": { - "time": "1763604536" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763604589" - }, - "departure": { - "time": "1763604589" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763604680" - }, - "departure": { - "time": "1763604680" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763604740" - }, - "departure": { - "time": "1763604740" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763604799" - }, - "departure": { - "time": "1763604799" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763604860" - }, - "departure": { - "time": "1763604860" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763604884" - }, - "departure": { - "time": "1763604884" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604931" - }, - "departure": { - "time": "1763604931" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604955" - }, - "departure": { - "time": "1763604955" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763605009" - }, - "departure": { - "time": "1763605009" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763605043" - }, - "departure": { - "time": "1763605043" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763605080" - }, - "departure": { - "time": "1763605080" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763605106" - }, - "departure": { - "time": "1763605106" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763605174" - }, - "departure": { - "time": "1763605174" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763605207" - }, - "departure": { - "time": "1763605207" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763605222" - }, - "departure": { - "time": "1763605222" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763605249" - }, - "departure": { - "time": "1763605249" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763605277" - }, - "departure": { - "time": "1763605277" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763605321" - }, - "departure": { - "time": "1763605321" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763605345" - }, - "departure": { - "time": "1763605345" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763605380" - }, - "departure": { - "time": "1763605380" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763605399" - }, - "departure": { - "time": "1763605399" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763605422" - }, - "departure": { - "time": "1763605422" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763605442" - }, - "departure": { - "time": "1763605442" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763605497" - }, - "departure": { - "time": "1763605497" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763605534" - }, - "departure": { - "time": "1763605534" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763605567" - }, - "departure": { - "time": "1763605567" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763605584" - }, - "departure": { - "time": "1763605584" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763605619" - }, - "departure": { - "time": "1763605619" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763605642" - }, - "departure": { - "time": "1763605642" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763605658" - }, - "departure": { - "time": "1763605658" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763605729" - }, - "departure": { - "time": "1763605729" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763605757" - }, - "departure": { - "time": "1763605757" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763605814" - }, - "departure": { - "time": "1763605814" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763605851" - }, - "departure": { - "time": "1763605851" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763605907" - }, - "departure": { - "time": "1763605907" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763605961" - }, - "departure": { - "time": "1763605961" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763606009" - }, - "departure": { - "time": "1763606009" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763606045" - }, - "departure": { - "time": "1763606045" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763606069" - }, - "departure": { - "time": "1763606069" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763606149" - }, - "departure": { - "time": "1763606149" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763606186" - }, - "departure": { - "time": "1763606186" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763606208" - }, - "departure": { - "time": "1763606208" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763606329" - }, - "departure": { - "time": "1763606329" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23018" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5529705_22106", - "tripUpdate": { - "trip": { - "tripId": "5529705", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 7, - "arrival": { - "time": "1763603091" - }, - "departure": { - "time": "1763603091" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763603211" - }, - "departure": { - "time": "1763603211" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603271" - }, - "departure": { - "time": "1763603271" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603391" - }, - "departure": { - "time": "1763603391" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603451" - }, - "departure": { - "time": "1763603451" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603631" - }, - "departure": { - "time": "1763603631" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "22106" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5534764_20059", - "tripUpdate": { - "trip": { - "tripId": "5534764", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 7, - "arrival": { - "time": "1763602934" - }, - "departure": { - "time": "1763602934" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763602969" - }, - "departure": { - "time": "1763602969" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603010" - }, - "departure": { - "time": "1763603010" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603045" - }, - "departure": { - "time": "1763603045" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603086" - }, - "departure": { - "time": "1763603086" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603160" - }, - "departure": { - "time": "1763603160" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603210" - }, - "departure": { - "time": "1763603210" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603249" - }, - "departure": { - "time": "1763603249" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603305" - }, - "departure": { - "time": "1763603305" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603328" - }, - "departure": { - "time": "1763603328" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603349" - }, - "departure": { - "time": "1763603349" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603367" - }, - "departure": { - "time": "1763603367" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603381" - }, - "departure": { - "time": "1763603381" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603400" - }, - "departure": { - "time": "1763603400" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603450" - }, - "departure": { - "time": "1763603450" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603505" - }, - "departure": { - "time": "1763603505" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603540" - }, - "departure": { - "time": "1763603540" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603588" - }, - "departure": { - "time": "1763603588" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603642" - }, - "departure": { - "time": "1763603642" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603700" - }, - "departure": { - "time": "1763603700" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603801" - }, - "departure": { - "time": "1763603801" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603944" - }, - "departure": { - "time": "1763603944" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763604016" - }, - "departure": { - "time": "1763604016" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763604103" - }, - "departure": { - "time": "1763604103" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763604264" - }, - "departure": { - "time": "1763604264" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763604319" - }, - "departure": { - "time": "1763604319" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604375" - }, - "departure": { - "time": "1763604375" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604443" - }, - "departure": { - "time": "1763604443" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604615" - }, - "departure": { - "time": "1763604615" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604720" - }, - "departure": { - "time": "1763604720" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "20059" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5535045_11029", - "tripUpdate": { - "trip": { - "tripId": "5535045", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 7, - "arrival": { - "time": "1763602973" - }, - "departure": { - "time": "1763602973" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763603032" - }, - "departure": { - "time": "1763603032" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603050" - }, - "departure": { - "time": "1763603050" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603126" - }, - "departure": { - "time": "1763603126" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603186" - }, - "departure": { - "time": "1763603186" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603264" - }, - "departure": { - "time": "1763603264" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603292" - }, - "departure": { - "time": "1763603292" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603306" - }, - "departure": { - "time": "1763603306" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603339" - }, - "departure": { - "time": "1763603339" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603352" - }, - "departure": { - "time": "1763603352" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603363" - }, - "departure": { - "time": "1763603363" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603386" - }, - "departure": { - "time": "1763603386" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603403" - }, - "departure": { - "time": "1763603403" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603449" - }, - "departure": { - "time": "1763603449" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603475" - }, - "departure": { - "time": "1763603475" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603500" - }, - "departure": { - "time": "1763603500" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603520" - }, - "departure": { - "time": "1763603520" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603541" - }, - "departure": { - "time": "1763603541" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603562" - }, - "departure": { - "time": "1763603562" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603581" - }, - "departure": { - "time": "1763603581" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603606" - }, - "departure": { - "time": "1763603606" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603674" - }, - "departure": { - "time": "1763603674" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603688" - }, - "departure": { - "time": "1763603688" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603722" - }, - "departure": { - "time": "1763603722" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603774" - }, - "departure": { - "time": "1763603774" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603846" - }, - "departure": { - "time": "1763603846" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "11029" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5617709_17107", - "tripUpdate": { - "trip": { - "tripId": "5617709", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 7, - "arrival": { - "time": "1763603118" - }, - "departure": { - "time": "1763603118" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763603358" - }, - "departure": { - "time": "1763603358" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603478" - }, - "departure": { - "time": "1763603478" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603658" - }, - "departure": { - "time": "1763603658" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603718" - }, - "departure": { - "time": "1763603718" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603778" - }, - "departure": { - "time": "1763603778" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603838" - }, - "departure": { - "time": "1763603838" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763604138" - }, - "departure": { - "time": "1763604138" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17107" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5619568_1013A", - "tripUpdate": { - "trip": { - "tripId": "5619568", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 7, - "arrival": { - "time": "1763602920" - }, - "departure": { - "time": "1763602920" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 8, - "arrival": { - "time": "1763603040" - }, - "departure": { - "time": "1763603040" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603220" - }, - "departure": { - "time": "1763603220" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603340" - }, - "departure": { - "time": "1763603340" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603460" - }, - "departure": { - "time": "1763603460" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603580" - }, - "departure": { - "time": "1763603580" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603760" - }, - "departure": { - "time": "1763603760" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603880" - }, - "departure": { - "time": "1763603880" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763604000" - }, - "departure": { - "time": "1763604000" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763604180" - }, - "departure": { - "time": "1763604180" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763604300" - }, - "departure": { - "time": "1763604300" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763604420" - }, - "departure": { - "time": "1763604420" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763604540" - }, - "departure": { - "time": "1763604540" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763604660" - }, - "departure": { - "time": "1763604660" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763604780" - }, - "departure": { - "time": "1763604780" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763604900" - }, - "departure": { - "time": "1763604900" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763605020" - }, - "departure": { - "time": "1763605020" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763605200" - }, - "departure": { - "time": "1763605200" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "1013A" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5524544_23109", - "tripUpdate": { - "trip": { - "tripId": "5524544", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 8, - "arrival": { - "time": "1763603017" - }, - "departure": { - "time": "1763603017" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603043" - }, - "departure": { - "time": "1763603043" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603074" - }, - "departure": { - "time": "1763603074" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603090" - }, - "departure": { - "time": "1763603090" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603113" - }, - "departure": { - "time": "1763603113" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603136" - }, - "departure": { - "time": "1763603136" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603160" - }, - "departure": { - "time": "1763603160" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603197" - }, - "departure": { - "time": "1763603197" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603260" - }, - "departure": { - "time": "1763603260" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603315" - }, - "departure": { - "time": "1763603315" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603404" - }, - "departure": { - "time": "1763603404" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603557" - }, - "departure": { - "time": "1763603557" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23109" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525810_L6", - "tripUpdate": { - "trip": { - "tripId": "5525810", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 8, - "arrival": { - "time": "1763603795" - }, - "departure": { - "time": "1763603795" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763604155" - }, - "departure": { - "time": "1763604155" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763604275" - }, - "departure": { - "time": "1763604275" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763604815" - }, - "departure": { - "time": "1763604815" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763605415" - }, - "departure": { - "time": "1763605415" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763605955" - }, - "departure": { - "time": "1763605955" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763606315" - }, - "departure": { - "time": "1763606315" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763606795" - }, - "departure": { - "time": "1763606795" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763607335" - }, - "departure": { - "time": "1763607335" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "L6" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5526613_12011", - "tripUpdate": { - "trip": { - "tripId": "5526613", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 8, - "arrival": { - "time": "1763602938" - }, - "departure": { - "time": "1763602938" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763602977" - }, - "departure": { - "time": "1763602977" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603041" - }, - "departure": { - "time": "1763603041" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603091" - }, - "departure": { - "time": "1763603091" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603137" - }, - "departure": { - "time": "1763603137" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603227" - }, - "departure": { - "time": "1763603227" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603285" - }, - "departure": { - "time": "1763603285" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603332" - }, - "departure": { - "time": "1763603332" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603356" - }, - "departure": { - "time": "1763603356" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603388" - }, - "departure": { - "time": "1763603388" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603409" - }, - "departure": { - "time": "1763603409" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603441" - }, - "departure": { - "time": "1763603441" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603464" - }, - "departure": { - "time": "1763603464" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603490" - }, - "departure": { - "time": "1763603490" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603523" - }, - "departure": { - "time": "1763603523" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603555" - }, - "departure": { - "time": "1763603555" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603585" - }, - "departure": { - "time": "1763603585" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603636" - }, - "departure": { - "time": "1763603636" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603684" - }, - "departure": { - "time": "1763603684" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603756" - }, - "departure": { - "time": "1763603756" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603804" - }, - "departure": { - "time": "1763603804" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603825" - }, - "departure": { - "time": "1763603825" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603901" - }, - "departure": { - "time": "1763603901" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763604040" - }, - "departure": { - "time": "1763604040" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763604088" - }, - "departure": { - "time": "1763604088" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604137" - }, - "departure": { - "time": "1763604137" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604195" - }, - "departure": { - "time": "1763604195" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604344" - }, - "departure": { - "time": "1763604344" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604425" - }, - "departure": { - "time": "1763604425" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "12011" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5528583_21020", - "tripUpdate": { - "trip": { - "tripId": "5528583", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 8, - "arrival": { - "time": "1763603123" - }, - "departure": { - "time": "1763603123" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603212" - }, - "departure": { - "time": "1763603212" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603278" - }, - "departure": { - "time": "1763603278" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603345" - }, - "departure": { - "time": "1763603345" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603429" - }, - "departure": { - "time": "1763603429" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603461" - }, - "departure": { - "time": "1763603461" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603538" - }, - "departure": { - "time": "1763603538" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603565" - }, - "departure": { - "time": "1763603565" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603626" - }, - "departure": { - "time": "1763603626" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603689" - }, - "departure": { - "time": "1763603689" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603716" - }, - "departure": { - "time": "1763603716" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603762" - }, - "departure": { - "time": "1763603762" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603836" - }, - "departure": { - "time": "1763603836" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603885" - }, - "departure": { - "time": "1763603885" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603992" - }, - "departure": { - "time": "1763603992" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763604076" - }, - "departure": { - "time": "1763604076" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763604147" - }, - "departure": { - "time": "1763604147" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763604199" - }, - "departure": { - "time": "1763604199" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763604238" - }, - "departure": { - "time": "1763604238" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763604287" - }, - "departure": { - "time": "1763604287" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763604318" - }, - "departure": { - "time": "1763604318" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763604365" - }, - "departure": { - "time": "1763604365" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763604394" - }, - "departure": { - "time": "1763604394" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763604420" - }, - "departure": { - "time": "1763604420" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763604445" - }, - "departure": { - "time": "1763604445" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604460" - }, - "departure": { - "time": "1763604460" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604494" - }, - "departure": { - "time": "1763604494" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604511" - }, - "departure": { - "time": "1763604511" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604541" - }, - "departure": { - "time": "1763604541" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604559" - }, - "departure": { - "time": "1763604559" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604581" - }, - "departure": { - "time": "1763604581" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604605" - }, - "departure": { - "time": "1763604605" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604625" - }, - "departure": { - "time": "1763604625" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604664" - }, - "departure": { - "time": "1763604664" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604685" - }, - "departure": { - "time": "1763604685" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604725" - }, - "departure": { - "time": "1763604725" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604752" - }, - "departure": { - "time": "1763604752" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604770" - }, - "departure": { - "time": "1763604770" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604803" - }, - "departure": { - "time": "1763604803" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604822" - }, - "departure": { - "time": "1763604822" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763604838" - }, - "departure": { - "time": "1763604838" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763604866" - }, - "departure": { - "time": "1763604866" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763604893" - }, - "departure": { - "time": "1763604893" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763604925" - }, - "departure": { - "time": "1763604925" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763604961" - }, - "departure": { - "time": "1763604961" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763604973" - }, - "departure": { - "time": "1763604973" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763605000" - }, - "departure": { - "time": "1763605000" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763605024" - }, - "departure": { - "time": "1763605024" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763605050" - }, - "departure": { - "time": "1763605050" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763605085" - }, - "departure": { - "time": "1763605085" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763605110" - }, - "departure": { - "time": "1763605110" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763605131" - }, - "departure": { - "time": "1763605131" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763605177" - }, - "departure": { - "time": "1763605177" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763605194" - }, - "departure": { - "time": "1763605194" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763605225" - }, - "departure": { - "time": "1763605225" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763605257" - }, - "departure": { - "time": "1763605257" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763605284" - }, - "departure": { - "time": "1763605284" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763605349" - }, - "departure": { - "time": "1763605349" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763605385" - }, - "departure": { - "time": "1763605385" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763605427" - }, - "departure": { - "time": "1763605427" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763605475" - }, - "departure": { - "time": "1763605475" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763605541" - }, - "departure": { - "time": "1763605541" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763605606" - }, - "departure": { - "time": "1763605606" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763605640" - }, - "departure": { - "time": "1763605640" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763605676" - }, - "departure": { - "time": "1763605676" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763605704" - }, - "departure": { - "time": "1763605704" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763605779" - }, - "departure": { - "time": "1763605779" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763605805" - }, - "departure": { - "time": "1763605805" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763605888" - }, - "departure": { - "time": "1763605888" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763605931" - }, - "departure": { - "time": "1763605931" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763606006" - }, - "departure": { - "time": "1763606006" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763606031" - }, - "departure": { - "time": "1763606031" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763606112" - }, - "departure": { - "time": "1763606112" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763606180" - }, - "departure": { - "time": "1763606180" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763606218" - }, - "departure": { - "time": "1763606218" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 83, - "arrival": { - "time": "1763606465" - }, - "departure": { - "time": "1763606465" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "21020" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5535134_17210", - "tripUpdate": { - "trip": { - "tripId": "5535134", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 8, - "arrival": { - "time": "1763602985" - }, - "departure": { - "time": "1763602985" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603012" - }, - "departure": { - "time": "1763603012" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603039" - }, - "departure": { - "time": "1763603039" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603085" - }, - "departure": { - "time": "1763603085" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603117" - }, - "departure": { - "time": "1763603117" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603152" - }, - "departure": { - "time": "1763603152" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603174" - }, - "departure": { - "time": "1763603174" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603196" - }, - "departure": { - "time": "1763603196" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603278" - }, - "departure": { - "time": "1763603278" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603325" - }, - "departure": { - "time": "1763603325" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603401" - }, - "departure": { - "time": "1763603401" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603553" - }, - "departure": { - "time": "1763603553" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603585" - }, - "departure": { - "time": "1763603585" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603805" - }, - "departure": { - "time": "1763603805" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17210" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5618238_21001", - "tripUpdate": { - "trip": { - "tripId": "5618238", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 8, - "arrival": { - "time": "1763602982" - }, - "departure": { - "time": "1763602982" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603036" - }, - "departure": { - "time": "1763603036" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603124" - }, - "departure": { - "time": "1763603124" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603159" - }, - "departure": { - "time": "1763603159" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603198" - }, - "departure": { - "time": "1763603198" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603256" - }, - "departure": { - "time": "1763603256" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603302" - }, - "departure": { - "time": "1763603302" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603352" - }, - "departure": { - "time": "1763603352" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603394" - }, - "departure": { - "time": "1763603394" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603427" - }, - "departure": { - "time": "1763603427" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603471" - }, - "departure": { - "time": "1763603471" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603506" - }, - "departure": { - "time": "1763603506" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603534" - }, - "departure": { - "time": "1763603534" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603590" - }, - "departure": { - "time": "1763603590" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603676" - }, - "departure": { - "time": "1763603676" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603747" - }, - "departure": { - "time": "1763603747" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603796" - }, - "departure": { - "time": "1763603796" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603816" - }, - "departure": { - "time": "1763603816" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603992" - }, - "departure": { - "time": "1763603992" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763604048" - }, - "departure": { - "time": "1763604048" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763604106" - }, - "departure": { - "time": "1763604106" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763604162" - }, - "departure": { - "time": "1763604162" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763604189" - }, - "departure": { - "time": "1763604189" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763604222" - }, - "departure": { - "time": "1763604222" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763604279" - }, - "departure": { - "time": "1763604279" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604342" - }, - "departure": { - "time": "1763604342" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604398" - }, - "departure": { - "time": "1763604398" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604460" - }, - "departure": { - "time": "1763604460" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604531" - }, - "departure": { - "time": "1763604531" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604574" - }, - "departure": { - "time": "1763604574" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604616" - }, - "departure": { - "time": "1763604616" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604696" - }, - "departure": { - "time": "1763604696" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604734" - }, - "departure": { - "time": "1763604734" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604758" - }, - "departure": { - "time": "1763604758" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604790" - }, - "departure": { - "time": "1763604790" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604827" - }, - "departure": { - "time": "1763604827" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604860" - }, - "departure": { - "time": "1763604860" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604879" - }, - "departure": { - "time": "1763604879" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604900" - }, - "departure": { - "time": "1763604900" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604965" - }, - "departure": { - "time": "1763604965" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763604993" - }, - "departure": { - "time": "1763604993" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763605018" - }, - "departure": { - "time": "1763605018" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763605044" - }, - "departure": { - "time": "1763605044" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763605116" - }, - "departure": { - "time": "1763605116" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763605133" - }, - "departure": { - "time": "1763605133" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763605150" - }, - "departure": { - "time": "1763605150" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763605180" - }, - "departure": { - "time": "1763605180" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763605256" - }, - "departure": { - "time": "1763605256" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763605344" - }, - "departure": { - "time": "1763605344" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763605444" - }, - "departure": { - "time": "1763605444" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763605475" - }, - "departure": { - "time": "1763605475" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763605526" - }, - "departure": { - "time": "1763605526" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763605561" - }, - "departure": { - "time": "1763605561" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763605611" - }, - "departure": { - "time": "1763605611" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763605670" - }, - "departure": { - "time": "1763605670" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763605727" - }, - "departure": { - "time": "1763605727" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763605749" - }, - "departure": { - "time": "1763605749" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763605770" - }, - "departure": { - "time": "1763605770" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763605800" - }, - "departure": { - "time": "1763605800" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763605827" - }, - "departure": { - "time": "1763605827" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763605859" - }, - "departure": { - "time": "1763605859" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763605918" - }, - "departure": { - "time": "1763605918" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763605956" - }, - "departure": { - "time": "1763605956" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763606064" - }, - "departure": { - "time": "1763606064" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763606115" - }, - "departure": { - "time": "1763606115" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763606178" - }, - "departure": { - "time": "1763606178" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763606229" - }, - "departure": { - "time": "1763606229" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763606332" - }, - "departure": { - "time": "1763606332" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763606422" - }, - "departure": { - "time": "1763606422" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763606454" - }, - "departure": { - "time": "1763606454" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763606496" - }, - "departure": { - "time": "1763606496" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763606580" - }, - "departure": { - "time": "1763606580" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763606777" - }, - "departure": { - "time": "1763606777" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763606832" - }, - "departure": { - "time": "1763606832" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763606976" - }, - "departure": { - "time": "1763606976" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "21001" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5619828_1153B", - "tripUpdate": { - "trip": { - "tripId": "5619828", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 8, - "arrival": { - "time": "1763603043" - }, - "departure": { - "time": "1763603043" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 9, - "arrival": { - "time": "1763603223" - }, - "departure": { - "time": "1763603223" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603343" - }, - "departure": { - "time": "1763603343" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603463" - }, - "departure": { - "time": "1763603463" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603583" - }, - "departure": { - "time": "1763603583" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603703" - }, - "departure": { - "time": "1763603703" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603823" - }, - "departure": { - "time": "1763603823" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603943" - }, - "departure": { - "time": "1763603943" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763604183" - }, - "departure": { - "time": "1763604183" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763604243" - }, - "departure": { - "time": "1763604243" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763604483" - }, - "departure": { - "time": "1763604483" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763604603" - }, - "departure": { - "time": "1763604603" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763604723" - }, - "departure": { - "time": "1763604723" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763604903" - }, - "departure": { - "time": "1763604903" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763605023" - }, - "departure": { - "time": "1763605023" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763605143" - }, - "departure": { - "time": "1763605143" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763605263" - }, - "departure": { - "time": "1763605263" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763605383" - }, - "departure": { - "time": "1763605383" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763605503" - }, - "departure": { - "time": "1763605503" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763605623" - }, - "departure": { - "time": "1763605623" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "1153B" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5526573_17053", - "tripUpdate": { - "trip": { - "tripId": "5526573", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 9, - "arrival": { - "time": "1763602990" - }, - "departure": { - "time": "1763602990" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603022" - }, - "departure": { - "time": "1763603022" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603112" - }, - "departure": { - "time": "1763603112" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603152" - }, - "departure": { - "time": "1763603152" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603212" - }, - "departure": { - "time": "1763603212" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603271" - }, - "departure": { - "time": "1763603271" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603303" - }, - "departure": { - "time": "1763603303" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603355" - }, - "departure": { - "time": "1763603355" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603412" - }, - "departure": { - "time": "1763603412" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603468" - }, - "departure": { - "time": "1763603468" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603589" - }, - "departure": { - "time": "1763603589" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603677" - }, - "departure": { - "time": "1763603677" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603795" - }, - "departure": { - "time": "1763603795" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603897" - }, - "departure": { - "time": "1763603897" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603931" - }, - "departure": { - "time": "1763603931" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763604003" - }, - "departure": { - "time": "1763604003" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763604084" - }, - "departure": { - "time": "1763604084" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763604136" - }, - "departure": { - "time": "1763604136" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763604204" - }, - "departure": { - "time": "1763604204" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763604312" - }, - "departure": { - "time": "1763604312" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763604361" - }, - "departure": { - "time": "1763604361" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763604391" - }, - "departure": { - "time": "1763604391" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763604432" - }, - "departure": { - "time": "1763604432" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763604545" - }, - "departure": { - "time": "1763604545" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604657" - }, - "departure": { - "time": "1763604657" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604852" - }, - "departure": { - "time": "1763604852" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17053" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5530947_24206", - "tripUpdate": { - "trip": { - "tripId": "5530947", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 9, - "arrival": { - "time": "1763603064" - }, - "departure": { - "time": "1763603064" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763603139" - }, - "departure": { - "time": "1763603139" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603301" - }, - "departure": { - "time": "1763603301" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "24206" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5535289_18209", - "tripUpdate": { - "trip": { - "tripId": "5535289", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 9, - "arrival": { - "time": "1763602922" - }, - "departure": { - "time": "1763602922" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 10, - "arrival": { - "time": "1763602948" - }, - "departure": { - "time": "1763602948" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763602963" - }, - "departure": { - "time": "1763602963" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763602999" - }, - "departure": { - "time": "1763602999" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603043" - }, - "departure": { - "time": "1763603043" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603084" - }, - "departure": { - "time": "1763603084" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603124" - }, - "departure": { - "time": "1763603124" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603153" - }, - "departure": { - "time": "1763603153" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603174" - }, - "departure": { - "time": "1763603174" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603216" - }, - "departure": { - "time": "1763603216" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603256" - }, - "departure": { - "time": "1763603256" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603273" - }, - "departure": { - "time": "1763603273" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603298" - }, - "departure": { - "time": "1763603298" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603321" - }, - "departure": { - "time": "1763603321" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603374" - }, - "departure": { - "time": "1763603374" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603385" - }, - "departure": { - "time": "1763603385" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603424" - }, - "departure": { - "time": "1763603424" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603471" - }, - "departure": { - "time": "1763603471" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603490" - }, - "departure": { - "time": "1763603490" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603513" - }, - "departure": { - "time": "1763603513" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603549" - }, - "departure": { - "time": "1763603549" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603569" - }, - "departure": { - "time": "1763603569" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603616" - }, - "departure": { - "time": "1763603616" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603649" - }, - "departure": { - "time": "1763603649" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603679" - }, - "departure": { - "time": "1763603679" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603707" - }, - "departure": { - "time": "1763603707" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603737" - }, - "departure": { - "time": "1763603737" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603771" - }, - "departure": { - "time": "1763603771" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603797" - }, - "departure": { - "time": "1763603797" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603830" - }, - "departure": { - "time": "1763603830" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603870" - }, - "departure": { - "time": "1763603870" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603889" - }, - "departure": { - "time": "1763603889" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603917" - }, - "departure": { - "time": "1763603917" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603951" - }, - "departure": { - "time": "1763603951" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604036" - }, - "departure": { - "time": "1763604036" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "18209" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525688_14016", - "tripUpdate": { - "trip": { - "tripId": "5525688", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 10, - "arrival": { - "time": "1763602943" - }, - "departure": { - "time": "1763602943" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763602997" - }, - "departure": { - "time": "1763602997" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603042" - }, - "departure": { - "time": "1763603042" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603083" - }, - "departure": { - "time": "1763603083" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603138" - }, - "departure": { - "time": "1763603138" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603178" - }, - "departure": { - "time": "1763603178" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603218" - }, - "departure": { - "time": "1763603218" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603267" - }, - "departure": { - "time": "1763603267" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603307" - }, - "departure": { - "time": "1763603307" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603355" - }, - "departure": { - "time": "1763603355" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603459" - }, - "departure": { - "time": "1763603459" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603597" - }, - "departure": { - "time": "1763603597" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603642" - }, - "departure": { - "time": "1763603642" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603689" - }, - "departure": { - "time": "1763603689" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603733" - }, - "departure": { - "time": "1763603733" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603767" - }, - "departure": { - "time": "1763603767" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603873" - }, - "departure": { - "time": "1763603873" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603909" - }, - "departure": { - "time": "1763603909" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603952" - }, - "departure": { - "time": "1763603952" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763604069" - }, - "departure": { - "time": "1763604069" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763604183" - }, - "departure": { - "time": "1763604183" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763604257" - }, - "departure": { - "time": "1763604257" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763604293" - }, - "departure": { - "time": "1763604293" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604325" - }, - "departure": { - "time": "1763604325" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604350" - }, - "departure": { - "time": "1763604350" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604375" - }, - "departure": { - "time": "1763604375" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604404" - }, - "departure": { - "time": "1763604404" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604470" - }, - "departure": { - "time": "1763604470" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604497" - }, - "departure": { - "time": "1763604497" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604527" - }, - "departure": { - "time": "1763604527" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604588" - }, - "departure": { - "time": "1763604588" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604667" - }, - "departure": { - "time": "1763604667" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604696" - }, - "departure": { - "time": "1763604696" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604747" - }, - "departure": { - "time": "1763604747" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604797" - }, - "departure": { - "time": "1763604797" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604878" - }, - "departure": { - "time": "1763604878" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604977" - }, - "departure": { - "time": "1763604977" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763605055" - }, - "departure": { - "time": "1763605055" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763605147" - }, - "departure": { - "time": "1763605147" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763605218" - }, - "departure": { - "time": "1763605218" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763605457" - }, - "departure": { - "time": "1763605457" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763605580" - }, - "departure": { - "time": "1763605580" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763605616" - }, - "departure": { - "time": "1763605616" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763605662" - }, - "departure": { - "time": "1763605662" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763605683" - }, - "departure": { - "time": "1763605683" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763605702" - }, - "departure": { - "time": "1763605702" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763605843" - }, - "departure": { - "time": "1763605843" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763605855" - }, - "departure": { - "time": "1763605855" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763605876" - }, - "departure": { - "time": "1763605876" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763605895" - }, - "departure": { - "time": "1763605895" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763605937" - }, - "departure": { - "time": "1763605937" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763605982" - }, - "departure": { - "time": "1763605982" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763606019" - }, - "departure": { - "time": "1763606019" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763606062" - }, - "departure": { - "time": "1763606062" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763606138" - }, - "departure": { - "time": "1763606138" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763606183" - }, - "departure": { - "time": "1763606183" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763606231" - }, - "departure": { - "time": "1763606231" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763606258" - }, - "departure": { - "time": "1763606258" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763606357" - }, - "departure": { - "time": "1763606357" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763606411" - }, - "departure": { - "time": "1763606411" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763606473" - }, - "departure": { - "time": "1763606473" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763606492" - }, - "departure": { - "time": "1763606492" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763606506" - }, - "departure": { - "time": "1763606506" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763606571" - }, - "departure": { - "time": "1763606571" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763606627" - }, - "departure": { - "time": "1763606627" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763606657" - }, - "departure": { - "time": "1763606657" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763606738" - }, - "departure": { - "time": "1763606738" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763607137" - }, - "departure": { - "time": "1763607137" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763607227" - }, - "departure": { - "time": "1763607227" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763607272" - }, - "departure": { - "time": "1763607272" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763607300" - }, - "departure": { - "time": "1763607300" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763607315" - }, - "departure": { - "time": "1763607315" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763607346" - }, - "departure": { - "time": "1763607346" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 83, - "arrival": { - "time": "1763607375" - }, - "departure": { - "time": "1763607375" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 84, - "arrival": { - "time": "1763607405" - }, - "departure": { - "time": "1763607405" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 85, - "arrival": { - "time": "1763607426" - }, - "departure": { - "time": "1763607426" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 86, - "arrival": { - "time": "1763607468" - }, - "departure": { - "time": "1763607468" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 87, - "arrival": { - "time": "1763607497" - }, - "departure": { - "time": "1763607497" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 88, - "arrival": { - "time": "1763607549" - }, - "departure": { - "time": "1763607549" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 89, - "arrival": { - "time": "1763607571" - }, - "departure": { - "time": "1763607571" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 90, - "arrival": { - "time": "1763607611" - }, - "departure": { - "time": "1763607611" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 91, - "arrival": { - "time": "1763607668" - }, - "departure": { - "time": "1763607668" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 92, - "arrival": { - "time": "1763607693" - }, - "departure": { - "time": "1763607693" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 93, - "arrival": { - "time": "1763607741" - }, - "departure": { - "time": "1763607741" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 94, - "arrival": { - "time": "1763607804" - }, - "departure": { - "time": "1763607804" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 95, - "arrival": { - "time": "1763607825" - }, - "departure": { - "time": "1763607825" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 96, - "arrival": { - "time": "1763607847" - }, - "departure": { - "time": "1763607847" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 97, - "arrival": { - "time": "1763607918" - }, - "departure": { - "time": "1763607918" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 98, - "arrival": { - "time": "1763607948" - }, - "departure": { - "time": "1763607948" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 99, - "arrival": { - "time": "1763607994" - }, - "departure": { - "time": "1763607994" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 100, - "arrival": { - "time": "1763608036" - }, - "departure": { - "time": "1763608036" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 101, - "arrival": { - "time": "1763608065" - }, - "departure": { - "time": "1763608065" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 102, - "arrival": { - "time": "1763608099" - }, - "departure": { - "time": "1763608099" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 103, - "arrival": { - "time": "1763608138" - }, - "departure": { - "time": "1763608138" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 104, - "arrival": { - "time": "1763608202" - }, - "departure": { - "time": "1763608202" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 105, - "arrival": { - "time": "1763608240" - }, - "departure": { - "time": "1763608240" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 106, - "arrival": { - "time": "1763608282" - }, - "departure": { - "time": "1763608282" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 107, - "arrival": { - "time": "1763608318" - }, - "departure": { - "time": "1763608318" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 108, - "arrival": { - "time": "1763608359" - }, - "departure": { - "time": "1763608359" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 109, - "arrival": { - "time": "1763608397" - }, - "departure": { - "time": "1763608397" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 110, - "arrival": { - "time": "1763608429" - }, - "departure": { - "time": "1763608429" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 111, - "arrival": { - "time": "1763608448" - }, - "departure": { - "time": "1763608448" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 112, - "arrival": { - "time": "1763608460" - }, - "departure": { - "time": "1763608460" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 113, - "arrival": { - "time": "1763608469" - }, - "departure": { - "time": "1763608469" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 114, - "arrival": { - "time": "1763608481" - }, - "departure": { - "time": "1763608481" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 115, - "arrival": { - "time": "1763608495" - }, - "departure": { - "time": "1763608495" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 116, - "arrival": { - "time": "1763608506" - }, - "departure": { - "time": "1763608506" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 117, - "arrival": { - "time": "1763608526" - }, - "departure": { - "time": "1763608526" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 118, - "arrival": { - "time": "1763608543" - }, - "departure": { - "time": "1763608543" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 119, - "arrival": { - "time": "1763608560" - }, - "departure": { - "time": "1763608560" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 120, - "arrival": { - "time": "1763608579" - }, - "departure": { - "time": "1763608579" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 121, - "arrival": { - "time": "1763608594" - }, - "departure": { - "time": "1763608594" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 122, - "arrival": { - "time": "1763608632" - }, - "departure": { - "time": "1763608632" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 123, - "arrival": { - "time": "1763608648" - }, - "departure": { - "time": "1763608648" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 124, - "arrival": { - "time": "1763608657" - }, - "departure": { - "time": "1763608657" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 125, - "arrival": { - "time": "1763608672" - }, - "departure": { - "time": "1763608672" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 126, - "arrival": { - "time": "1763608690" - }, - "departure": { - "time": "1763608690" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 127, - "arrival": { - "time": "1763608715" - }, - "departure": { - "time": "1763608715" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 128, - "arrival": { - "time": "1763608724" - }, - "departure": { - "time": "1763608724" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 129, - "arrival": { - "time": "1763608746" - }, - "departure": { - "time": "1763608746" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 130, - "arrival": { - "time": "1763608761" - }, - "departure": { - "time": "1763608761" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 131, - "arrival": { - "time": "1763608772" - }, - "departure": { - "time": "1763608772" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 132, - "arrival": { - "time": "1763608817" - }, - "departure": { - "time": "1763608817" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 133, - "arrival": { - "time": "1763608832" - }, - "departure": { - "time": "1763608832" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 134, - "arrival": { - "time": "1763608860" - }, - "departure": { - "time": "1763608860" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 135, - "arrival": { - "time": "1763608883" - }, - "departure": { - "time": "1763608883" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 136, - "arrival": { - "time": "1763608922" - }, - "departure": { - "time": "1763608922" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 137, - "arrival": { - "time": "1763608950" - }, - "departure": { - "time": "1763608950" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 138, - "arrival": { - "time": "1763608996" - }, - "departure": { - "time": "1763608996" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 139, - "arrival": { - "time": "1763609024" - }, - "departure": { - "time": "1763609024" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 140, - "arrival": { - "time": "1763609053" - }, - "departure": { - "time": "1763609053" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 141, - "arrival": { - "time": "1763609101" - }, - "departure": { - "time": "1763609101" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 142, - "arrival": { - "time": "1763609147" - }, - "departure": { - "time": "1763609147" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 143, - "arrival": { - "time": "1763609187" - }, - "departure": { - "time": "1763609187" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 144, - "arrival": { - "time": "1763609242" - }, - "departure": { - "time": "1763609242" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 145, - "arrival": { - "time": "1763609297" - }, - "departure": { - "time": "1763609297" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 146, - "arrival": { - "time": "1763609337" - }, - "departure": { - "time": "1763609337" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 147, - "arrival": { - "time": "1763609372" - }, - "departure": { - "time": "1763609372" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 148, - "arrival": { - "time": "1763609396" - }, - "departure": { - "time": "1763609396" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 149, - "arrival": { - "time": "1763609418" - }, - "departure": { - "time": "1763609418" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 150, - "arrival": { - "time": "1763609435" - }, - "departure": { - "time": "1763609435" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 151, - "arrival": { - "time": "1763609469" - }, - "departure": { - "time": "1763609469" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 152, - "arrival": { - "time": "1763609487" - }, - "departure": { - "time": "1763609487" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 153, - "arrival": { - "time": "1763609522" - }, - "departure": { - "time": "1763609522" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 154, - "arrival": { - "time": "1763609572" - }, - "departure": { - "time": "1763609572" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 155, - "arrival": { - "time": "1763609605" - }, - "departure": { - "time": "1763609605" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 156, - "arrival": { - "time": "1763609619" - }, - "departure": { - "time": "1763609619" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 157, - "arrival": { - "time": "1763609661" - }, - "departure": { - "time": "1763609661" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 158, - "arrival": { - "time": "1763609696" - }, - "departure": { - "time": "1763609696" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 159, - "arrival": { - "time": "1763609757" - }, - "departure": { - "time": "1763609757" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 160, - "arrival": { - "time": "1763609804" - }, - "departure": { - "time": "1763609804" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 161, - "arrival": { - "time": "1763609830" - }, - "departure": { - "time": "1763609830" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 162, - "arrival": { - "time": "1763609868" - }, - "departure": { - "time": "1763609868" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 163, - "arrival": { - "time": "1763609893" - }, - "departure": { - "time": "1763609893" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 164, - "arrival": { - "time": "1763609949" - }, - "departure": { - "time": "1763609949" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 165, - "arrival": { - "time": "1763609968" - }, - "departure": { - "time": "1763609968" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 166, - "arrival": { - "time": "1763610017" - }, - "departure": { - "time": "1763610017" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 167, - "arrival": { - "time": "1763610028" - }, - "departure": { - "time": "1763610028" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 168, - "arrival": { - "time": "1763610043" - }, - "departure": { - "time": "1763610043" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 169, - "arrival": { - "time": "1763610212" - }, - "departure": { - "time": "1763610212" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 170, - "arrival": { - "time": "1763610253" - }, - "departure": { - "time": "1763610253" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 171, - "arrival": { - "time": "1763610304" - }, - "departure": { - "time": "1763610304" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 172, - "arrival": { - "time": "1763610317" - }, - "departure": { - "time": "1763610317" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 173, - "arrival": { - "time": "1763610355" - }, - "departure": { - "time": "1763610355" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 174, - "arrival": { - "time": "1763610390" - }, - "departure": { - "time": "1763610390" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 175, - "arrival": { - "time": "1763610423" - }, - "departure": { - "time": "1763610423" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 176, - "arrival": { - "time": "1763610458" - }, - "departure": { - "time": "1763610458" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 177, - "arrival": { - "time": "1763610492" - }, - "departure": { - "time": "1763610492" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 178, - "arrival": { - "time": "1763610535" - }, - "departure": { - "time": "1763610535" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 179, - "arrival": { - "time": "1763610617" - }, - "departure": { - "time": "1763610617" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 180, - "arrival": { - "time": "1763610674" - }, - "departure": { - "time": "1763610674" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 181, - "arrival": { - "time": "1763610759" - }, - "departure": { - "time": "1763610759" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 182, - "arrival": { - "time": "1763610817" - }, - "departure": { - "time": "1763610817" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 183, - "arrival": { - "time": "1763610870" - }, - "departure": { - "time": "1763610870" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 184, - "arrival": { - "time": "1763610928" - }, - "departure": { - "time": "1763610928" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 185, - "arrival": { - "time": "1763610977" - }, - "departure": { - "time": "1763610977" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 186, - "arrival": { - "time": "1763611031" - }, - "departure": { - "time": "1763611031" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 187, - "arrival": { - "time": "1763611097" - }, - "departure": { - "time": "1763611097" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "14016" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525855_CC106", - "tripUpdate": { - "trip": { - "tripId": "5525855", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 10, - "arrival": { - "time": "1763603722" - }, - "departure": { - "time": "1763603722" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763604082" - }, - "departure": { - "time": "1763604082" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763604862" - }, - "departure": { - "time": "1763604862" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763605342" - }, - "departure": { - "time": "1763605342" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763605822" - }, - "departure": { - "time": "1763605822" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763606062" - }, - "departure": { - "time": "1763606062" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763606542" - }, - "departure": { - "time": "1763606542" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "CC106" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5527726_23004", - "tripUpdate": { - "trip": { - "tripId": "5527726", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 10, - "arrival": { - "time": "1763602998" - }, - "departure": { - "time": "1763602998" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603023" - }, - "departure": { - "time": "1763603023" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603053" - }, - "departure": { - "time": "1763603053" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603098" - }, - "departure": { - "time": "1763603098" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603143" - }, - "departure": { - "time": "1763603143" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603176" - }, - "departure": { - "time": "1763603176" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603220" - }, - "departure": { - "time": "1763603220" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603248" - }, - "departure": { - "time": "1763603248" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603278" - }, - "departure": { - "time": "1763603278" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603291" - }, - "departure": { - "time": "1763603291" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603332" - }, - "departure": { - "time": "1763603332" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603342" - }, - "departure": { - "time": "1763603342" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603371" - }, - "departure": { - "time": "1763603371" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603393" - }, - "departure": { - "time": "1763603393" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603420" - }, - "departure": { - "time": "1763603420" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603448" - }, - "departure": { - "time": "1763603448" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603460" - }, - "departure": { - "time": "1763603460" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603479" - }, - "departure": { - "time": "1763603479" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603525" - }, - "departure": { - "time": "1763603525" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603561" - }, - "departure": { - "time": "1763603561" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603587" - }, - "departure": { - "time": "1763603587" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603614" - }, - "departure": { - "time": "1763603614" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603636" - }, - "departure": { - "time": "1763603636" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603670" - }, - "departure": { - "time": "1763603670" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603683" - }, - "departure": { - "time": "1763603683" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603719" - }, - "departure": { - "time": "1763603719" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603790" - }, - "departure": { - "time": "1763603790" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604000" - }, - "departure": { - "time": "1763604000" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23004" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5529587_22110", - "tripUpdate": { - "trip": { - "tripId": "5529587", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 10, - "arrival": { - "time": "1763603051" - }, - "departure": { - "time": "1763603051" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603231" - }, - "departure": { - "time": "1763603231" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603471" - }, - "departure": { - "time": "1763603471" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "22110" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5531066_18205", - "tripUpdate": { - "trip": { - "tripId": "5531066", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 10, - "arrival": { - "time": "1763602952" - }, - "departure": { - "time": "1763602952" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603002" - }, - "departure": { - "time": "1763603002" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603031" - }, - "departure": { - "time": "1763603031" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603168" - }, - "departure": { - "time": "1763603168" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603226" - }, - "departure": { - "time": "1763603226" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603345" - }, - "departure": { - "time": "1763603345" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603456" - }, - "departure": { - "time": "1763603456" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603482" - }, - "departure": { - "time": "1763603482" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603588" - }, - "departure": { - "time": "1763603588" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "18205" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5575529_1140A", - "tripUpdate": { - "trip": { - "tripId": "5575529", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 10, - "arrival": { - "time": "1763603119" - }, - "departure": { - "time": "1763603119" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603239" - }, - "departure": { - "time": "1763603239" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603359" - }, - "departure": { - "time": "1763603359" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603479" - }, - "departure": { - "time": "1763603479" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603719" - }, - "departure": { - "time": "1763603719" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603839" - }, - "departure": { - "time": "1763603839" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603959" - }, - "departure": { - "time": "1763603959" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763604079" - }, - "departure": { - "time": "1763604079" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763604259" - }, - "departure": { - "time": "1763604259" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763604619" - }, - "departure": { - "time": "1763604619" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "1140A" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5617771_17120", - "tripUpdate": { - "trip": { - "tripId": "5617771", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 10, - "arrival": { - "time": "1763603111" - }, - "departure": { - "time": "1763603111" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603291" - }, - "departure": { - "time": "1763603291" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603471" - }, - "departure": { - "time": "1763603471" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603651" - }, - "departure": { - "time": "1763603651" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763604071" - }, - "departure": { - "time": "1763604071" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17120" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5617942_09030", - "tripUpdate": { - "trip": { - "tripId": "5617942", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 10, - "arrival": { - "time": "1763603275" - }, - "departure": { - "time": "1763603275" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 11, - "arrival": { - "time": "1763603436" - }, - "departure": { - "time": "1763603436" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603559" - }, - "departure": { - "time": "1763603559" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603585" - }, - "departure": { - "time": "1763603585" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603731" - }, - "departure": { - "time": "1763603731" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603799" - }, - "departure": { - "time": "1763603799" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603849" - }, - "departure": { - "time": "1763603849" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603985" - }, - "departure": { - "time": "1763603985" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763604007" - }, - "departure": { - "time": "1763604007" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763604159" - }, - "departure": { - "time": "1763604159" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "09030" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525496_23110", - "tripUpdate": { - "trip": { - "tripId": "5525496", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 11, - "arrival": { - "time": "1763602839" - }, - "departure": { - "time": "1763602839" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763602862" - }, - "departure": { - "time": "1763602862" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763602890" - }, - "departure": { - "time": "1763602890" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763602906" - }, - "departure": { - "time": "1763602906" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763602935" - }, - "departure": { - "time": "1763602935" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763602953" - }, - "departure": { - "time": "1763602953" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763602973" - }, - "departure": { - "time": "1763602973" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603044" - }, - "departure": { - "time": "1763603044" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603065" - }, - "departure": { - "time": "1763603065" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603089" - }, - "departure": { - "time": "1763603089" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603107" - }, - "departure": { - "time": "1763603107" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603149" - }, - "departure": { - "time": "1763603149" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603197" - }, - "departure": { - "time": "1763603197" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603297" - }, - "departure": { - "time": "1763603297" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603319" - }, - "departure": { - "time": "1763603319" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603350" - }, - "departure": { - "time": "1763603350" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603404" - }, - "departure": { - "time": "1763603404" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603449" - }, - "departure": { - "time": "1763603449" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603462" - }, - "departure": { - "time": "1763603462" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603493" - }, - "departure": { - "time": "1763603493" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603515" - }, - "departure": { - "time": "1763603515" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603537" - }, - "departure": { - "time": "1763603537" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603562" - }, - "departure": { - "time": "1763603562" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603584" - }, - "departure": { - "time": "1763603584" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603612" - }, - "departure": { - "time": "1763603612" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603641" - }, - "departure": { - "time": "1763603641" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603676" - }, - "departure": { - "time": "1763603676" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603698" - }, - "departure": { - "time": "1763603698" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603719" - }, - "departure": { - "time": "1763603719" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603764" - }, - "departure": { - "time": "1763603764" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603797" - }, - "departure": { - "time": "1763603797" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603812" - }, - "departure": { - "time": "1763603812" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603828" - }, - "departure": { - "time": "1763603828" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603847" - }, - "departure": { - "time": "1763603847" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603876" - }, - "departure": { - "time": "1763603876" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603890" - }, - "departure": { - "time": "1763603890" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603913" - }, - "departure": { - "time": "1763603913" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603948" - }, - "departure": { - "time": "1763603948" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603981" - }, - "departure": { - "time": "1763603981" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763604027" - }, - "departure": { - "time": "1763604027" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763604064" - }, - "departure": { - "time": "1763604064" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763604090" - }, - "departure": { - "time": "1763604090" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763604126" - }, - "departure": { - "time": "1763604126" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763604149" - }, - "departure": { - "time": "1763604149" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763604174" - }, - "departure": { - "time": "1763604174" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763604207" - }, - "departure": { - "time": "1763604207" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763604228" - }, - "departure": { - "time": "1763604228" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763604247" - }, - "departure": { - "time": "1763604247" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763604290" - }, - "departure": { - "time": "1763604290" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763604312" - }, - "departure": { - "time": "1763604312" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763604331" - }, - "departure": { - "time": "1763604331" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763604350" - }, - "departure": { - "time": "1763604350" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763604367" - }, - "departure": { - "time": "1763604367" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763604389" - }, - "departure": { - "time": "1763604389" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763604424" - }, - "departure": { - "time": "1763604424" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763604479" - }, - "departure": { - "time": "1763604479" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763604534" - }, - "departure": { - "time": "1763604534" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763604590" - }, - "departure": { - "time": "1763604590" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763604664" - }, - "departure": { - "time": "1763604664" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763604702" - }, - "departure": { - "time": "1763604702" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763604727" - }, - "departure": { - "time": "1763604727" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763604783" - }, - "departure": { - "time": "1763604783" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763604828" - }, - "departure": { - "time": "1763604828" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763604904" - }, - "departure": { - "time": "1763604904" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763604971" - }, - "departure": { - "time": "1763604971" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763605046" - }, - "departure": { - "time": "1763605046" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763605129" - }, - "departure": { - "time": "1763605129" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763605179" - }, - "departure": { - "time": "1763605179" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763605221" - }, - "departure": { - "time": "1763605221" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763605264" - }, - "departure": { - "time": "1763605264" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763605293" - }, - "departure": { - "time": "1763605293" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763605396" - }, - "departure": { - "time": "1763605396" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 83, - "arrival": { - "time": "1763605447" - }, - "departure": { - "time": "1763605447" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 84, - "arrival": { - "time": "1763605504" - }, - "departure": { - "time": "1763605504" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 85, - "arrival": { - "time": "1763605546" - }, - "departure": { - "time": "1763605546" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 86, - "arrival": { - "time": "1763605570" - }, - "departure": { - "time": "1763605570" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 87, - "arrival": { - "time": "1763605647" - }, - "departure": { - "time": "1763605647" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 88, - "arrival": { - "time": "1763605685" - }, - "departure": { - "time": "1763605685" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 89, - "arrival": { - "time": "1763605744" - }, - "departure": { - "time": "1763605744" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 90, - "arrival": { - "time": "1763605796" - }, - "departure": { - "time": "1763605796" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 91, - "arrival": { - "time": "1763605842" - }, - "departure": { - "time": "1763605842" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 92, - "arrival": { - "time": "1763605916" - }, - "departure": { - "time": "1763605916" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 93, - "arrival": { - "time": "1763606104" - }, - "departure": { - "time": "1763606104" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23110" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525822_L2", - "tripUpdate": { - "trip": { - "tripId": "5525822", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 11, - "arrival": { - "time": "1763602956" - }, - "departure": { - "time": "1763602956" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603556" - }, - "departure": { - "time": "1763603556" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763604096" - }, - "departure": { - "time": "1763604096" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763604456" - }, - "departure": { - "time": "1763604456" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763604936" - }, - "departure": { - "time": "1763604936" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763605476" - }, - "departure": { - "time": "1763605476" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "L2" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525838_CC103", - "tripUpdate": { - "trip": { - "tripId": "5525838", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 11, - "arrival": { - "time": "1763602252" - }, - "departure": { - "time": "1763602252" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603032" - }, - "departure": { - "time": "1763603032" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603512" - }, - "departure": { - "time": "1763603512" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603992" - }, - "departure": { - "time": "1763603992" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763604232" - }, - "departure": { - "time": "1763604232" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763604712" - }, - "departure": { - "time": "1763604712" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "CC103" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5617607_17117", - "tripUpdate": { - "trip": { - "tripId": "5617607", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 11, - "arrival": { - "time": "1763603066" - }, - "departure": { - "time": "1763603066" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 12, - "arrival": { - "time": "1763603126" - }, - "departure": { - "time": "1763603126" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603186" - }, - "departure": { - "time": "1763603186" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603486" - }, - "departure": { - "time": "1763603486" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17117" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5528914_17024", - "tripUpdate": { - "trip": { - "tripId": "5528914", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 12, - "arrival": { - "time": "1763602945" - }, - "departure": { - "time": "1763602945" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763602982" - }, - "departure": { - "time": "1763602982" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603013" - }, - "departure": { - "time": "1763603013" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603045" - }, - "departure": { - "time": "1763603045" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603093" - }, - "departure": { - "time": "1763603093" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603133" - }, - "departure": { - "time": "1763603133" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603184" - }, - "departure": { - "time": "1763603184" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603250" - }, - "departure": { - "time": "1763603250" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603298" - }, - "departure": { - "time": "1763603298" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603345" - }, - "departure": { - "time": "1763603345" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603372" - }, - "departure": { - "time": "1763603372" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603404" - }, - "departure": { - "time": "1763603404" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603445" - }, - "departure": { - "time": "1763603445" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603548" - }, - "departure": { - "time": "1763603548" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603606" - }, - "departure": { - "time": "1763603606" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603632" - }, - "departure": { - "time": "1763603632" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603705" - }, - "departure": { - "time": "1763603705" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603772" - }, - "departure": { - "time": "1763603772" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603803" - }, - "departure": { - "time": "1763603803" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603907" - }, - "departure": { - "time": "1763603907" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603945" - }, - "departure": { - "time": "1763603945" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604047" - }, - "departure": { - "time": "1763604047" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604131" - }, - "departure": { - "time": "1763604131" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604298" - }, - "departure": { - "time": "1763604298" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604425" - }, - "departure": { - "time": "1763604425" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17024" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5529586_22109", - "tripUpdate": { - "trip": { - "tripId": "5529586", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 12, - "arrival": { - "time": "1763603172" - }, - "departure": { - "time": "1763603172" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "22109" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5534778_21022", - "tripUpdate": { - "trip": { - "tripId": "5534778", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 12, - "arrival": { - "time": "1763602944" - }, - "departure": { - "time": "1763602944" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763602981" - }, - "departure": { - "time": "1763602981" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603025" - }, - "departure": { - "time": "1763603025" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603057" - }, - "departure": { - "time": "1763603057" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603095" - }, - "departure": { - "time": "1763603095" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603141" - }, - "departure": { - "time": "1763603141" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603182" - }, - "departure": { - "time": "1763603182" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603291" - }, - "departure": { - "time": "1763603291" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603416" - }, - "departure": { - "time": "1763603416" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603521" - }, - "departure": { - "time": "1763603521" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603588" - }, - "departure": { - "time": "1763603588" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603606" - }, - "departure": { - "time": "1763603606" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603635" - }, - "departure": { - "time": "1763603635" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603668" - }, - "departure": { - "time": "1763603668" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603697" - }, - "departure": { - "time": "1763603697" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603761" - }, - "departure": { - "time": "1763603761" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603927" - }, - "departure": { - "time": "1763603927" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763604017" - }, - "departure": { - "time": "1763604017" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763604318" - }, - "departure": { - "time": "1763604318" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763604487" - }, - "departure": { - "time": "1763604487" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763604901" - }, - "departure": { - "time": "1763604901" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "21022" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5535094_18208", - "tripUpdate": { - "trip": { - "tripId": "5535094", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 12, - "arrival": { - "time": "1763603062" - }, - "departure": { - "time": "1763603062" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603112" - }, - "departure": { - "time": "1763603112" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603155" - }, - "departure": { - "time": "1763603155" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603184" - }, - "departure": { - "time": "1763603184" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603205" - }, - "departure": { - "time": "1763603205" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603240" - }, - "departure": { - "time": "1763603240" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603265" - }, - "departure": { - "time": "1763603265" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603289" - }, - "departure": { - "time": "1763603289" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603318" - }, - "departure": { - "time": "1763603318" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603338" - }, - "departure": { - "time": "1763603338" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603365" - }, - "departure": { - "time": "1763603365" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603431" - }, - "departure": { - "time": "1763603431" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603504" - }, - "departure": { - "time": "1763603504" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603540" - }, - "departure": { - "time": "1763603540" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603591" - }, - "departure": { - "time": "1763603591" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603662" - }, - "departure": { - "time": "1763603662" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603724" - }, - "departure": { - "time": "1763603724" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603848" - }, - "departure": { - "time": "1763603848" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603900" - }, - "departure": { - "time": "1763603900" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "18208" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5617824_17113", - "tripUpdate": { - "trip": { - "tripId": "5617824", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 12, - "arrival": { - "time": "1763602930" - }, - "departure": { - "time": "1763602930" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763603110" - }, - "departure": { - "time": "1763603110" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603530" - }, - "departure": { - "time": "1763603530" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17113" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5618163_21012", - "tripUpdate": { - "trip": { - "tripId": "5618163", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 12, - "arrival": { - "time": "1763602834" - }, - "departure": { - "time": "1763602834" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763602859" - }, - "departure": { - "time": "1763602859" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763602906" - }, - "departure": { - "time": "1763602906" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763602950" - }, - "departure": { - "time": "1763602950" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763602988" - }, - "departure": { - "time": "1763602988" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603011" - }, - "departure": { - "time": "1763603011" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603031" - }, - "departure": { - "time": "1763603031" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603099" - }, - "departure": { - "time": "1763603099" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603125" - }, - "departure": { - "time": "1763603125" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603158" - }, - "departure": { - "time": "1763603158" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603194" - }, - "departure": { - "time": "1763603194" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603220" - }, - "departure": { - "time": "1763603220" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603269" - }, - "departure": { - "time": "1763603269" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603314" - }, - "departure": { - "time": "1763603314" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603400" - }, - "departure": { - "time": "1763603400" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603496" - }, - "departure": { - "time": "1763603496" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603524" - }, - "departure": { - "time": "1763603524" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603547" - }, - "departure": { - "time": "1763603547" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603562" - }, - "departure": { - "time": "1763603562" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603614" - }, - "departure": { - "time": "1763603614" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603671" - }, - "departure": { - "time": "1763603671" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603712" - }, - "departure": { - "time": "1763603712" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603772" - }, - "departure": { - "time": "1763603772" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603795" - }, - "departure": { - "time": "1763603795" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603847" - }, - "departure": { - "time": "1763603847" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603884" - }, - "departure": { - "time": "1763603884" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603925" - }, - "departure": { - "time": "1763603925" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603985" - }, - "departure": { - "time": "1763603985" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604008" - }, - "departure": { - "time": "1763604008" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604038" - }, - "departure": { - "time": "1763604038" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604079" - }, - "departure": { - "time": "1763604079" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604154" - }, - "departure": { - "time": "1763604154" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604191" - }, - "departure": { - "time": "1763604191" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604235" - }, - "departure": { - "time": "1763604235" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604278" - }, - "departure": { - "time": "1763604278" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604341" - }, - "departure": { - "time": "1763604341" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763604378" - }, - "departure": { - "time": "1763604378" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763604409" - }, - "departure": { - "time": "1763604409" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763604436" - }, - "departure": { - "time": "1763604436" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763604496" - }, - "departure": { - "time": "1763604496" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763604528" - }, - "departure": { - "time": "1763604528" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763604580" - }, - "departure": { - "time": "1763604580" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763604623" - }, - "departure": { - "time": "1763604623" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763604666" - }, - "departure": { - "time": "1763604666" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763604725" - }, - "departure": { - "time": "1763604725" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763604844" - }, - "departure": { - "time": "1763604844" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763604881" - }, - "departure": { - "time": "1763604881" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763604908" - }, - "departure": { - "time": "1763604908" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763604994" - }, - "departure": { - "time": "1763604994" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763605055" - }, - "departure": { - "time": "1763605055" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763605096" - }, - "departure": { - "time": "1763605096" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763605126" - }, - "departure": { - "time": "1763605126" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763605153" - }, - "departure": { - "time": "1763605153" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763605186" - }, - "departure": { - "time": "1763605186" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763605227" - }, - "departure": { - "time": "1763605227" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763605268" - }, - "departure": { - "time": "1763605268" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763605311" - }, - "departure": { - "time": "1763605311" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763605357" - }, - "departure": { - "time": "1763605357" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763605414" - }, - "departure": { - "time": "1763605414" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763605447" - }, - "departure": { - "time": "1763605447" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763605484" - }, - "departure": { - "time": "1763605484" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763605524" - }, - "departure": { - "time": "1763605524" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763605601" - }, - "departure": { - "time": "1763605601" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763605648" - }, - "departure": { - "time": "1763605648" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763605700" - }, - "departure": { - "time": "1763605700" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763605751" - }, - "departure": { - "time": "1763605751" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763605799" - }, - "departure": { - "time": "1763605799" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763605857" - }, - "departure": { - "time": "1763605857" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763605935" - }, - "departure": { - "time": "1763605935" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763606067" - }, - "departure": { - "time": "1763606067" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763606194" - }, - "departure": { - "time": "1763606194" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "21012" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5718413_09031", - "tripUpdate": { - "trip": { - "tripId": "5718413", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 12, - "arrival": { - "time": "1763602898" - }, - "departure": { - "time": "1763602898" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 13, - "arrival": { - "time": "1763602953" - }, - "departure": { - "time": "1763602953" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763602987" - }, - "departure": { - "time": "1763602987" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603040" - }, - "departure": { - "time": "1763603040" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603087" - }, - "departure": { - "time": "1763603087" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603112" - }, - "departure": { - "time": "1763603112" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603153" - }, - "departure": { - "time": "1763603153" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603191" - }, - "departure": { - "time": "1763603191" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603243" - }, - "departure": { - "time": "1763603243" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603287" - }, - "departure": { - "time": "1763603287" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603316" - }, - "departure": { - "time": "1763603316" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603340" - }, - "departure": { - "time": "1763603340" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603393" - }, - "departure": { - "time": "1763603393" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603433" - }, - "departure": { - "time": "1763603433" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603470" - }, - "departure": { - "time": "1763603470" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603492" - }, - "departure": { - "time": "1763603492" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603538" - }, - "departure": { - "time": "1763603538" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603561" - }, - "departure": { - "time": "1763603561" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603640" - }, - "departure": { - "time": "1763603640" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603711" - }, - "departure": { - "time": "1763603711" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603744" - }, - "departure": { - "time": "1763603744" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603826" - }, - "departure": { - "time": "1763603826" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603883" - }, - "departure": { - "time": "1763603883" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603932" - }, - "departure": { - "time": "1763603932" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603985" - }, - "departure": { - "time": "1763603985" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604036" - }, - "departure": { - "time": "1763604036" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604072" - }, - "departure": { - "time": "1763604072" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604106" - }, - "departure": { - "time": "1763604106" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604148" - }, - "departure": { - "time": "1763604148" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604192" - }, - "departure": { - "time": "1763604192" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604240" - }, - "departure": { - "time": "1763604240" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604256" - }, - "departure": { - "time": "1763604256" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604309" - }, - "departure": { - "time": "1763604309" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604360" - }, - "departure": { - "time": "1763604360" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604620" - }, - "departure": { - "time": "1763604620" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604737" - }, - "departure": { - "time": "1763604737" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763604840" - }, - "departure": { - "time": "1763604840" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "09031" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5526284_23117", - "tripUpdate": { - "trip": { - "tripId": "5526284", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 13, - "arrival": { - "time": "1763602931" - }, - "departure": { - "time": "1763602931" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763602947" - }, - "departure": { - "time": "1763602947" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763602992" - }, - "departure": { - "time": "1763602992" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603021" - }, - "departure": { - "time": "1763603021" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603150" - }, - "departure": { - "time": "1763603150" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603190" - }, - "departure": { - "time": "1763603190" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603375" - }, - "departure": { - "time": "1763603375" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603395" - }, - "departure": { - "time": "1763603395" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603415" - }, - "departure": { - "time": "1763603415" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603441" - }, - "departure": { - "time": "1763603441" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603466" - }, - "departure": { - "time": "1763603466" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603492" - }, - "departure": { - "time": "1763603492" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603550" - }, - "departure": { - "time": "1763603550" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603620" - }, - "departure": { - "time": "1763603620" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603681" - }, - "departure": { - "time": "1763603681" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603703" - }, - "departure": { - "time": "1763603703" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603744" - }, - "departure": { - "time": "1763603744" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603766" - }, - "departure": { - "time": "1763603766" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603799" - }, - "departure": { - "time": "1763603799" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603828" - }, - "departure": { - "time": "1763603828" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603852" - }, - "departure": { - "time": "1763603852" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603873" - }, - "departure": { - "time": "1763603873" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603906" - }, - "departure": { - "time": "1763603906" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603924" - }, - "departure": { - "time": "1763603924" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603954" - }, - "departure": { - "time": "1763603954" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603981" - }, - "departure": { - "time": "1763603981" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604033" - }, - "departure": { - "time": "1763604033" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604169" - }, - "departure": { - "time": "1763604169" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604221" - }, - "departure": { - "time": "1763604221" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604281" - }, - "departure": { - "time": "1763604281" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604333" - }, - "departure": { - "time": "1763604333" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604405" - }, - "departure": { - "time": "1763604405" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604430" - }, - "departure": { - "time": "1763604430" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604496" - }, - "departure": { - "time": "1763604496" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604531" - }, - "departure": { - "time": "1763604531" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763604554" - }, - "departure": { - "time": "1763604554" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763604581" - }, - "departure": { - "time": "1763604581" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763604626" - }, - "departure": { - "time": "1763604626" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763604671" - }, - "departure": { - "time": "1763604671" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763604695" - }, - "departure": { - "time": "1763604695" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763604715" - }, - "departure": { - "time": "1763604715" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763604749" - }, - "departure": { - "time": "1763604749" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763604767" - }, - "departure": { - "time": "1763604767" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763604802" - }, - "departure": { - "time": "1763604802" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763604831" - }, - "departure": { - "time": "1763604831" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763604881" - }, - "departure": { - "time": "1763604881" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763604948" - }, - "departure": { - "time": "1763604948" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763605158" - }, - "departure": { - "time": "1763605158" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763605247" - }, - "departure": { - "time": "1763605247" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763605361" - }, - "departure": { - "time": "1763605361" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23117" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5527221_23022", - "tripUpdate": { - "trip": { - "tripId": "5527221", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 13, - "arrival": { - "time": "1763602966" - }, - "departure": { - "time": "1763602966" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603000" - }, - "departure": { - "time": "1763603000" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603158" - }, - "departure": { - "time": "1763603158" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603205" - }, - "departure": { - "time": "1763603205" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603285" - }, - "departure": { - "time": "1763603285" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603340" - }, - "departure": { - "time": "1763603340" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603412" - }, - "departure": { - "time": "1763603412" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603540" - }, - "departure": { - "time": "1763603540" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603627" - }, - "departure": { - "time": "1763603627" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603679" - }, - "departure": { - "time": "1763603679" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603760" - }, - "departure": { - "time": "1763603760" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603786" - }, - "departure": { - "time": "1763603786" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603811" - }, - "departure": { - "time": "1763603811" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603843" - }, - "departure": { - "time": "1763603843" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603870" - }, - "departure": { - "time": "1763603870" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603892" - }, - "departure": { - "time": "1763603892" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603910" - }, - "departure": { - "time": "1763603910" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603929" - }, - "departure": { - "time": "1763603929" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603966" - }, - "departure": { - "time": "1763603966" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603991" - }, - "departure": { - "time": "1763603991" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604009" - }, - "departure": { - "time": "1763604009" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604060" - }, - "departure": { - "time": "1763604060" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604540" - }, - "departure": { - "time": "1763604540" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604685" - }, - "departure": { - "time": "1763604685" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604739" - }, - "departure": { - "time": "1763604739" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604794" - }, - "departure": { - "time": "1763604794" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604841" - }, - "departure": { - "time": "1763604841" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604879" - }, - "departure": { - "time": "1763604879" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604970" - }, - "departure": { - "time": "1763604970" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763605022" - }, - "departure": { - "time": "1763605022" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763605140" - }, - "departure": { - "time": "1763605140" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763605200" - }, - "departure": { - "time": "1763605200" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763605410" - }, - "departure": { - "time": "1763605410" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763605480" - }, - "departure": { - "time": "1763605480" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763605541" - }, - "departure": { - "time": "1763605541" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763605592" - }, - "departure": { - "time": "1763605592" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763605649" - }, - "departure": { - "time": "1763605649" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763605700" - }, - "departure": { - "time": "1763605700" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763605762" - }, - "departure": { - "time": "1763605762" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763605802" - }, - "departure": { - "time": "1763605802" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763605831" - }, - "departure": { - "time": "1763605831" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763605881" - }, - "departure": { - "time": "1763605881" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763605920" - }, - "departure": { - "time": "1763605920" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763606280" - }, - "departure": { - "time": "1763606280" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23022" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5534715_13008", - "tripUpdate": { - "trip": { - "tripId": "5534715", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 13, - "arrival": { - "time": "1763602983" - }, - "departure": { - "time": "1763602983" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603096" - }, - "departure": { - "time": "1763603096" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603355" - }, - "departure": { - "time": "1763603355" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603403" - }, - "departure": { - "time": "1763603403" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603469" - }, - "departure": { - "time": "1763603469" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603504" - }, - "departure": { - "time": "1763603504" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603542" - }, - "departure": { - "time": "1763603542" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603600" - }, - "departure": { - "time": "1763603600" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603655" - }, - "departure": { - "time": "1763603655" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603701" - }, - "departure": { - "time": "1763603701" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603763" - }, - "departure": { - "time": "1763603763" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603809" - }, - "departure": { - "time": "1763603809" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603928" - }, - "departure": { - "time": "1763603928" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763604047" - }, - "departure": { - "time": "1763604047" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763604121" - }, - "departure": { - "time": "1763604121" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763604248" - }, - "departure": { - "time": "1763604248" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763604313" - }, - "departure": { - "time": "1763604313" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763604402" - }, - "departure": { - "time": "1763604402" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763604453" - }, - "departure": { - "time": "1763604453" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763604603" - }, - "departure": { - "time": "1763604603" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "13008" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5535184_17204", - "tripUpdate": { - "trip": { - "tripId": "5535184", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 13, - "arrival": { - "time": "1763602885" - }, - "departure": { - "time": "1763602885" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763602927" - }, - "departure": { - "time": "1763602927" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763602965" - }, - "departure": { - "time": "1763602965" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603049" - }, - "departure": { - "time": "1763603049" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603111" - }, - "departure": { - "time": "1763603111" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603140" - }, - "departure": { - "time": "1763603140" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603173" - }, - "departure": { - "time": "1763603173" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603234" - }, - "departure": { - "time": "1763603234" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603340" - }, - "departure": { - "time": "1763603340" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603426" - }, - "departure": { - "time": "1763603426" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603580" - }, - "departure": { - "time": "1763603580" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17204" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5574979_23215", - "tripUpdate": { - "trip": { - "tripId": "5574979", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 13, - "arrival": { - "time": "1763602969" - }, - "departure": { - "time": "1763602969" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763602996" - }, - "departure": { - "time": "1763602996" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603019" - }, - "departure": { - "time": "1763603019" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603041" - }, - "departure": { - "time": "1763603041" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603089" - }, - "departure": { - "time": "1763603089" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603139" - }, - "departure": { - "time": "1763603139" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603171" - }, - "departure": { - "time": "1763603171" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603198" - }, - "departure": { - "time": "1763603198" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603230" - }, - "departure": { - "time": "1763603230" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603335" - }, - "departure": { - "time": "1763603335" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603389" - }, - "departure": { - "time": "1763603389" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603411" - }, - "departure": { - "time": "1763603411" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603449" - }, - "departure": { - "time": "1763603449" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603474" - }, - "departure": { - "time": "1763603474" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603582" - }, - "departure": { - "time": "1763603582" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603629" - }, - "departure": { - "time": "1763603629" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603651" - }, - "departure": { - "time": "1763603651" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603666" - }, - "departure": { - "time": "1763603666" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603678" - }, - "departure": { - "time": "1763603678" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603704" - }, - "departure": { - "time": "1763603704" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603727" - }, - "departure": { - "time": "1763603727" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603749" - }, - "departure": { - "time": "1763603749" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603782" - }, - "departure": { - "time": "1763603782" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603801" - }, - "departure": { - "time": "1763603801" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603839" - }, - "departure": { - "time": "1763603839" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603879" - }, - "departure": { - "time": "1763603879" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603929" - }, - "departure": { - "time": "1763603929" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603958" - }, - "departure": { - "time": "1763603958" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603987" - }, - "departure": { - "time": "1763603987" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604027" - }, - "departure": { - "time": "1763604027" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604074" - }, - "departure": { - "time": "1763604074" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604109" - }, - "departure": { - "time": "1763604109" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604212" - }, - "departure": { - "time": "1763604212" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604383" - }, - "departure": { - "time": "1763604383" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604589" - }, - "departure": { - "time": "1763604589" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23215" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5575452_1124B", - "tripUpdate": { - "trip": { - "tripId": "5575452", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 13, - "arrival": { - "time": "1763603105" - }, - "departure": { - "time": "1763603105" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603225" - }, - "departure": { - "time": "1763603225" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603465" - }, - "departure": { - "time": "1763603465" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603525" - }, - "departure": { - "time": "1763603525" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603705" - }, - "departure": { - "time": "1763603705" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603885" - }, - "departure": { - "time": "1763603885" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763604125" - }, - "departure": { - "time": "1763604125" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "1124B" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5617350_22011", - "tripUpdate": { - "trip": { - "tripId": "5617350", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 13, - "arrival": { - "time": "1763602994" - }, - "departure": { - "time": "1763602994" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603015" - }, - "departure": { - "time": "1763603015" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603037" - }, - "departure": { - "time": "1763603037" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603092" - }, - "departure": { - "time": "1763603092" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603134" - }, - "departure": { - "time": "1763603134" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603247" - }, - "departure": { - "time": "1763603247" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603392" - }, - "departure": { - "time": "1763603392" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603430" - }, - "departure": { - "time": "1763603430" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603480" - }, - "departure": { - "time": "1763603480" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603579" - }, - "departure": { - "time": "1763603579" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603637" - }, - "departure": { - "time": "1763603637" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603692" - }, - "departure": { - "time": "1763603692" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603710" - }, - "departure": { - "time": "1763603710" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603736" - }, - "departure": { - "time": "1763603736" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603807" - }, - "departure": { - "time": "1763603807" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603842" - }, - "departure": { - "time": "1763603842" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603870" - }, - "departure": { - "time": "1763603870" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603894" - }, - "departure": { - "time": "1763603894" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603933" - }, - "departure": { - "time": "1763603933" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603971" - }, - "departure": { - "time": "1763603971" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604052" - }, - "departure": { - "time": "1763604052" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604103" - }, - "departure": { - "time": "1763604103" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604157" - }, - "departure": { - "time": "1763604157" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604216" - }, - "departure": { - "time": "1763604216" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604358" - }, - "departure": { - "time": "1763604358" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604472" - }, - "departure": { - "time": "1763604472" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "22011" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5619753_1106A", - "tripUpdate": { - "trip": { - "tripId": "5619753", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 13, - "arrival": { - "time": "1763603020" - }, - "departure": { - "time": "1763603020" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763603140" - }, - "departure": { - "time": "1763603140" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603260" - }, - "departure": { - "time": "1763603260" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603440" - }, - "departure": { - "time": "1763603440" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603560" - }, - "departure": { - "time": "1763603560" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603680" - }, - "departure": { - "time": "1763603680" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603860" - }, - "departure": { - "time": "1763603860" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603980" - }, - "departure": { - "time": "1763603980" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763604100" - }, - "departure": { - "time": "1763604100" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763604220" - }, - "departure": { - "time": "1763604220" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763604400" - }, - "departure": { - "time": "1763604400" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763604640" - }, - "departure": { - "time": "1763604640" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763604820" - }, - "departure": { - "time": "1763604820" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763604940" - }, - "departure": { - "time": "1763604940" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763605060" - }, - "departure": { - "time": "1763605060" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "1106A" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5620475_22014", - "tripUpdate": { - "trip": { - "tripId": "5620475", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 13, - "arrival": { - "time": "1763602867" - }, - "departure": { - "time": "1763602867" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 14, - "arrival": { - "time": "1763602886" - }, - "departure": { - "time": "1763602886" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763602917" - }, - "departure": { - "time": "1763602917" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763602952" - }, - "departure": { - "time": "1763602952" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603006" - }, - "departure": { - "time": "1763603006" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603043" - }, - "departure": { - "time": "1763603043" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603071" - }, - "departure": { - "time": "1763603071" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603122" - }, - "departure": { - "time": "1763603122" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603169" - }, - "departure": { - "time": "1763603169" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603294" - }, - "departure": { - "time": "1763603294" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603447" - }, - "departure": { - "time": "1763603447" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603479" - }, - "departure": { - "time": "1763603479" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603505" - }, - "departure": { - "time": "1763603505" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603529" - }, - "departure": { - "time": "1763603529" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603554" - }, - "departure": { - "time": "1763603554" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603578" - }, - "departure": { - "time": "1763603578" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603626" - }, - "departure": { - "time": "1763603626" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603657" - }, - "departure": { - "time": "1763603657" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603695" - }, - "departure": { - "time": "1763603695" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603743" - }, - "departure": { - "time": "1763603743" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603788" - }, - "departure": { - "time": "1763603788" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603829" - }, - "departure": { - "time": "1763603829" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603837" - }, - "departure": { - "time": "1763603837" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603843" - }, - "departure": { - "time": "1763603843" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603853" - }, - "departure": { - "time": "1763603853" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603874" - }, - "departure": { - "time": "1763603874" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603912" - }, - "departure": { - "time": "1763603912" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604120" - }, - "departure": { - "time": "1763604120" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604160" - }, - "departure": { - "time": "1763604160" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604205" - }, - "departure": { - "time": "1763604205" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604249" - }, - "departure": { - "time": "1763604249" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604330" - }, - "departure": { - "time": "1763604330" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604445" - }, - "departure": { - "time": "1763604445" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604488" - }, - "departure": { - "time": "1763604488" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604563" - }, - "departure": { - "time": "1763604563" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763604577" - }, - "departure": { - "time": "1763604577" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763604607" - }, - "departure": { - "time": "1763604607" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763604639" - }, - "departure": { - "time": "1763604639" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763604653" - }, - "departure": { - "time": "1763604653" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763604680" - }, - "departure": { - "time": "1763604680" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763604701" - }, - "departure": { - "time": "1763604701" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763604736" - }, - "departure": { - "time": "1763604736" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763604773" - }, - "departure": { - "time": "1763604773" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763604789" - }, - "departure": { - "time": "1763604789" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763604847" - }, - "departure": { - "time": "1763604847" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763604884" - }, - "departure": { - "time": "1763604884" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763604969" - }, - "departure": { - "time": "1763604969" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "22014" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5524577_23106", - "tripUpdate": { - "trip": { - "tripId": "5524577", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 14, - "arrival": { - "time": "1763602946" - }, - "departure": { - "time": "1763602946" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603007" - }, - "departure": { - "time": "1763603007" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603070" - }, - "departure": { - "time": "1763603070" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603125" - }, - "departure": { - "time": "1763603125" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603214" - }, - "departure": { - "time": "1763603214" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603367" - }, - "departure": { - "time": "1763603367" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23106" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525428_24005", - "tripUpdate": { - "trip": { - "tripId": "5525428", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 14, - "arrival": { - "time": "1763603040" - }, - "departure": { - "time": "1763603040" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603063" - }, - "departure": { - "time": "1763603063" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603092" - }, - "departure": { - "time": "1763603092" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603127" - }, - "departure": { - "time": "1763603127" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603168" - }, - "departure": { - "time": "1763603168" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603238" - }, - "departure": { - "time": "1763603238" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603280" - }, - "departure": { - "time": "1763603280" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603412" - }, - "departure": { - "time": "1763603412" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603487" - }, - "departure": { - "time": "1763603487" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603568" - }, - "departure": { - "time": "1763603568" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603626" - }, - "departure": { - "time": "1763603626" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603700" - }, - "departure": { - "time": "1763603700" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603727" - }, - "departure": { - "time": "1763603727" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603775" - }, - "departure": { - "time": "1763603775" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603820" - }, - "departure": { - "time": "1763603820" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603880" - }, - "departure": { - "time": "1763603880" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603918" - }, - "departure": { - "time": "1763603918" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603943" - }, - "departure": { - "time": "1763603943" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603975" - }, - "departure": { - "time": "1763603975" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603993" - }, - "departure": { - "time": "1763603993" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604019" - }, - "departure": { - "time": "1763604019" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604062" - }, - "departure": { - "time": "1763604062" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604120" - }, - "departure": { - "time": "1763604120" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604177" - }, - "departure": { - "time": "1763604177" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604210" - }, - "departure": { - "time": "1763604210" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604252" - }, - "departure": { - "time": "1763604252" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604293" - }, - "departure": { - "time": "1763604293" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604331" - }, - "departure": { - "time": "1763604331" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604383" - }, - "departure": { - "time": "1763604383" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604420" - }, - "departure": { - "time": "1763604420" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604508" - }, - "departure": { - "time": "1763604508" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604568" - }, - "departure": { - "time": "1763604568" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604634" - }, - "departure": { - "time": "1763604634" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604661" - }, - "departure": { - "time": "1763604661" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763604683" - }, - "departure": { - "time": "1763604683" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763604717" - }, - "departure": { - "time": "1763604717" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763604757" - }, - "departure": { - "time": "1763604757" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763604788" - }, - "departure": { - "time": "1763604788" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763604841" - }, - "departure": { - "time": "1763604841" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763604900" - }, - "departure": { - "time": "1763604900" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763604955" - }, - "departure": { - "time": "1763604955" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763604985" - }, - "departure": { - "time": "1763604985" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763605011" - }, - "departure": { - "time": "1763605011" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763605070" - }, - "departure": { - "time": "1763605070" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763605093" - }, - "departure": { - "time": "1763605093" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763605140" - }, - "departure": { - "time": "1763605140" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763605183" - }, - "departure": { - "time": "1763605183" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763605230" - }, - "departure": { - "time": "1763605230" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763605267" - }, - "departure": { - "time": "1763605267" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763605307" - }, - "departure": { - "time": "1763605307" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763605341" - }, - "departure": { - "time": "1763605341" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763605380" - }, - "departure": { - "time": "1763605380" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763605412" - }, - "departure": { - "time": "1763605412" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763605459" - }, - "departure": { - "time": "1763605459" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763605477" - }, - "departure": { - "time": "1763605477" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763605583" - }, - "departure": { - "time": "1763605583" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763605630" - }, - "departure": { - "time": "1763605630" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763605688" - }, - "departure": { - "time": "1763605688" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763605714" - }, - "departure": { - "time": "1763605714" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763605751" - }, - "departure": { - "time": "1763605751" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763605800" - }, - "departure": { - "time": "1763605800" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763605846" - }, - "departure": { - "time": "1763605846" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763605884" - }, - "departure": { - "time": "1763605884" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763605903" - }, - "departure": { - "time": "1763605903" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763605927" - }, - "departure": { - "time": "1763605927" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763605949" - }, - "departure": { - "time": "1763605949" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763605976" - }, - "departure": { - "time": "1763605976" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763606014" - }, - "departure": { - "time": "1763606014" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763606045" - }, - "departure": { - "time": "1763606045" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 83, - "arrival": { - "time": "1763606069" - }, - "departure": { - "time": "1763606069" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 84, - "arrival": { - "time": "1763606095" - }, - "departure": { - "time": "1763606095" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 85, - "arrival": { - "time": "1763606109" - }, - "departure": { - "time": "1763606109" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 86, - "arrival": { - "time": "1763606146" - }, - "departure": { - "time": "1763606146" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 87, - "arrival": { - "time": "1763606172" - }, - "departure": { - "time": "1763606172" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 88, - "arrival": { - "time": "1763606194" - }, - "departure": { - "time": "1763606194" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 89, - "arrival": { - "time": "1763606229" - }, - "departure": { - "time": "1763606229" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 90, - "arrival": { - "time": "1763606284" - }, - "departure": { - "time": "1763606284" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 91, - "arrival": { - "time": "1763606320" - }, - "departure": { - "time": "1763606320" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 92, - "arrival": { - "time": "1763606341" - }, - "departure": { - "time": "1763606341" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 93, - "arrival": { - "time": "1763606400" - }, - "departure": { - "time": "1763606400" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "24005" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5526892_23031", - "tripUpdate": { - "trip": { - "tripId": "5526892", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 14, - "arrival": { - "time": "1763603025" - }, - "departure": { - "time": "1763603025" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603105" - }, - "departure": { - "time": "1763603105" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603171" - }, - "departure": { - "time": "1763603171" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603255" - }, - "departure": { - "time": "1763603255" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603351" - }, - "departure": { - "time": "1763603351" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603412" - }, - "departure": { - "time": "1763603412" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603487" - }, - "departure": { - "time": "1763603487" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603563" - }, - "departure": { - "time": "1763603563" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603638" - }, - "departure": { - "time": "1763603638" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603711" - }, - "departure": { - "time": "1763603711" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603772" - }, - "departure": { - "time": "1763603772" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603815" - }, - "departure": { - "time": "1763603815" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603860" - }, - "departure": { - "time": "1763603860" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603978" - }, - "departure": { - "time": "1763603978" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763604069" - }, - "departure": { - "time": "1763604069" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763604160" - }, - "departure": { - "time": "1763604160" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763604251" - }, - "departure": { - "time": "1763604251" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763604291" - }, - "departure": { - "time": "1763604291" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763604315" - }, - "departure": { - "time": "1763604315" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604373" - }, - "departure": { - "time": "1763604373" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604396" - }, - "departure": { - "time": "1763604396" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604431" - }, - "departure": { - "time": "1763604431" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604476" - }, - "departure": { - "time": "1763604476" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604537" - }, - "departure": { - "time": "1763604537" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604589" - }, - "departure": { - "time": "1763604589" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604671" - }, - "departure": { - "time": "1763604671" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604721" - }, - "departure": { - "time": "1763604721" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604760" - }, - "departure": { - "time": "1763604760" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604794" - }, - "departure": { - "time": "1763604794" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604852" - }, - "departure": { - "time": "1763604852" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604911" - }, - "departure": { - "time": "1763604911" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604961" - }, - "departure": { - "time": "1763604961" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763605019" - }, - "departure": { - "time": "1763605019" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763605111" - }, - "departure": { - "time": "1763605111" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763605151" - }, - "departure": { - "time": "1763605151" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763605192" - }, - "departure": { - "time": "1763605192" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763605295" - }, - "departure": { - "time": "1763605295" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763605337" - }, - "departure": { - "time": "1763605337" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763605381" - }, - "departure": { - "time": "1763605381" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763605463" - }, - "departure": { - "time": "1763605463" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763605494" - }, - "departure": { - "time": "1763605494" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763605751" - }, - "departure": { - "time": "1763605751" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23031" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5575528_1167B", - "tripUpdate": { - "trip": { - "tripId": "5575528", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 14, - "arrival": { - "time": "1763603088" - }, - "departure": { - "time": "1763603088" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603208" - }, - "departure": { - "time": "1763603208" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603328" - }, - "departure": { - "time": "1763603328" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603448" - }, - "departure": { - "time": "1763603448" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603628" - }, - "departure": { - "time": "1763603628" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603988" - }, - "departure": { - "time": "1763603988" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "1167B" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5619567_1008B", - "tripUpdate": { - "trip": { - "tripId": "5619567", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 14, - "arrival": { - "time": "1763603180" - }, - "departure": { - "time": "1763603180" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603300" - }, - "departure": { - "time": "1763603300" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603480" - }, - "departure": { - "time": "1763603480" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603600" - }, - "departure": { - "time": "1763603600" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603720" - }, - "departure": { - "time": "1763603720" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603840" - }, - "departure": { - "time": "1763603840" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603960" - }, - "departure": { - "time": "1763603960" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763604080" - }, - "departure": { - "time": "1763604080" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763604200" - }, - "departure": { - "time": "1763604200" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763604320" - }, - "departure": { - "time": "1763604320" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763604500" - }, - "departure": { - "time": "1763604500" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "1008B" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5619827_1158B", - "tripUpdate": { - "trip": { - "tripId": "5619827", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 14, - "arrival": { - "time": "1763603087" - }, - "departure": { - "time": "1763603087" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 15, - "arrival": { - "time": "1763603207" - }, - "departure": { - "time": "1763603207" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603447" - }, - "departure": { - "time": "1763603447" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603507" - }, - "departure": { - "time": "1763603507" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603747" - }, - "departure": { - "time": "1763603747" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603867" - }, - "departure": { - "time": "1763603867" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603987" - }, - "departure": { - "time": "1763603987" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763604167" - }, - "departure": { - "time": "1763604167" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763604287" - }, - "departure": { - "time": "1763604287" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763604407" - }, - "departure": { - "time": "1763604407" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763604527" - }, - "departure": { - "time": "1763604527" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763604647" - }, - "departure": { - "time": "1763604647" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763604767" - }, - "departure": { - "time": "1763604767" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763604887" - }, - "departure": { - "time": "1763604887" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "1158B" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5524912_23101", - "tripUpdate": { - "trip": { - "tripId": "5524912", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 15, - "arrival": { - "time": "1763603009" - }, - "departure": { - "time": "1763603009" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603065" - }, - "departure": { - "time": "1763603065" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603155" - }, - "departure": { - "time": "1763603155" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603237" - }, - "departure": { - "time": "1763603237" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603309" - }, - "departure": { - "time": "1763603309" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603471" - }, - "departure": { - "time": "1763603471" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603565" - }, - "departure": { - "time": "1763603565" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603645" - }, - "departure": { - "time": "1763603645" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603694" - }, - "departure": { - "time": "1763603694" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603745" - }, - "departure": { - "time": "1763603745" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603795" - }, - "departure": { - "time": "1763603795" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603849" - }, - "departure": { - "time": "1763603849" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603891" - }, - "departure": { - "time": "1763603891" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603926" - }, - "departure": { - "time": "1763603926" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603961" - }, - "departure": { - "time": "1763603961" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763604024" - }, - "departure": { - "time": "1763604024" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763604078" - }, - "departure": { - "time": "1763604078" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763604126" - }, - "departure": { - "time": "1763604126" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604155" - }, - "departure": { - "time": "1763604155" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604226" - }, - "departure": { - "time": "1763604226" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604269" - }, - "departure": { - "time": "1763604269" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604329" - }, - "departure": { - "time": "1763604329" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604401" - }, - "departure": { - "time": "1763604401" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604453" - }, - "departure": { - "time": "1763604453" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604509" - }, - "departure": { - "time": "1763604509" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604565" - }, - "departure": { - "time": "1763604565" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604653" - }, - "departure": { - "time": "1763604653" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604713" - }, - "departure": { - "time": "1763604713" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604769" - }, - "departure": { - "time": "1763604769" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604809" - }, - "departure": { - "time": "1763604809" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604918" - }, - "departure": { - "time": "1763604918" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763605226" - }, - "departure": { - "time": "1763605226" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763605349" - }, - "departure": { - "time": "1763605349" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23101" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5527659_23010", - "tripUpdate": { - "trip": { - "tripId": "5527659", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 15, - "arrival": { - "time": "1763602918" - }, - "departure": { - "time": "1763602918" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763602949" - }, - "departure": { - "time": "1763602949" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763602959" - }, - "departure": { - "time": "1763602959" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603008" - }, - "departure": { - "time": "1763603008" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603061" - }, - "departure": { - "time": "1763603061" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603098" - }, - "departure": { - "time": "1763603098" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603139" - }, - "departure": { - "time": "1763603139" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603192" - }, - "departure": { - "time": "1763603192" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603249" - }, - "departure": { - "time": "1763603249" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603284" - }, - "departure": { - "time": "1763603284" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603326" - }, - "departure": { - "time": "1763603326" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603372" - }, - "departure": { - "time": "1763603372" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603428" - }, - "departure": { - "time": "1763603428" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603471" - }, - "departure": { - "time": "1763603471" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603522" - }, - "departure": { - "time": "1763603522" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603547" - }, - "departure": { - "time": "1763603547" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603608" - }, - "departure": { - "time": "1763603608" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603693" - }, - "departure": { - "time": "1763603693" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603817" - }, - "departure": { - "time": "1763603817" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604088" - }, - "departure": { - "time": "1763604088" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23010" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5528721_18011", - "tripUpdate": { - "trip": { - "tripId": "5528721", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 15, - "arrival": { - "time": "1763603199" - }, - "departure": { - "time": "1763603199" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603514" - }, - "departure": { - "time": "1763603514" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603559" - }, - "departure": { - "time": "1763603559" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603591" - }, - "departure": { - "time": "1763603591" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603642" - }, - "departure": { - "time": "1763603642" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603693" - }, - "departure": { - "time": "1763603693" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603752" - }, - "departure": { - "time": "1763603752" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603785" - }, - "departure": { - "time": "1763603785" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603839" - }, - "departure": { - "time": "1763603839" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603862" - }, - "departure": { - "time": "1763603862" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603939" - }, - "departure": { - "time": "1763603939" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603979" - }, - "departure": { - "time": "1763603979" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763604025" - }, - "departure": { - "time": "1763604025" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763604122" - }, - "departure": { - "time": "1763604122" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763604156" - }, - "departure": { - "time": "1763604156" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763604207" - }, - "departure": { - "time": "1763604207" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763604271" - }, - "departure": { - "time": "1763604271" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763604341" - }, - "departure": { - "time": "1763604341" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604383" - }, - "departure": { - "time": "1763604383" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604447" - }, - "departure": { - "time": "1763604447" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604519" - }, - "departure": { - "time": "1763604519" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604547" - }, - "departure": { - "time": "1763604547" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604570" - }, - "departure": { - "time": "1763604570" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604594" - }, - "departure": { - "time": "1763604594" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604629" - }, - "departure": { - "time": "1763604629" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604666" - }, - "departure": { - "time": "1763604666" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604704" - }, - "departure": { - "time": "1763604704" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604743" - }, - "departure": { - "time": "1763604743" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604780" - }, - "departure": { - "time": "1763604780" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604833" - }, - "departure": { - "time": "1763604833" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604853" - }, - "departure": { - "time": "1763604853" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604894" - }, - "departure": { - "time": "1763604894" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604939" - }, - "departure": { - "time": "1763604939" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763604963" - }, - "departure": { - "time": "1763604963" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763605023" - }, - "departure": { - "time": "1763605023" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763605047" - }, - "departure": { - "time": "1763605047" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763605073" - }, - "departure": { - "time": "1763605073" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763605101" - }, - "departure": { - "time": "1763605101" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763605162" - }, - "departure": { - "time": "1763605162" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763605200" - }, - "departure": { - "time": "1763605200" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763605229" - }, - "departure": { - "time": "1763605229" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763605263" - }, - "departure": { - "time": "1763605263" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763605296" - }, - "departure": { - "time": "1763605296" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763605312" - }, - "departure": { - "time": "1763605312" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763605341" - }, - "departure": { - "time": "1763605341" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763605363" - }, - "departure": { - "time": "1763605363" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763605419" - }, - "departure": { - "time": "1763605419" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "18011" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5529780_11021", - "tripUpdate": { - "trip": { - "tripId": "5529780", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 15, - "arrival": { - "time": "1763602932" - }, - "departure": { - "time": "1763602932" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603100" - }, - "departure": { - "time": "1763603100" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603109" - }, - "departure": { - "time": "1763603109" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603116" - }, - "departure": { - "time": "1763603116" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603137" - }, - "departure": { - "time": "1763603137" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603160" - }, - "departure": { - "time": "1763603160" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603207" - }, - "departure": { - "time": "1763603207" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603232" - }, - "departure": { - "time": "1763603232" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603284" - }, - "departure": { - "time": "1763603284" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603331" - }, - "departure": { - "time": "1763603331" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603365" - }, - "departure": { - "time": "1763603365" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603460" - }, - "departure": { - "time": "1763603460" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603657" - }, - "departure": { - "time": "1763603657" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603748" - }, - "departure": { - "time": "1763603748" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603820" - }, - "departure": { - "time": "1763603820" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603893" - }, - "departure": { - "time": "1763603893" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763604000" - }, - "departure": { - "time": "1763604000" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763604069" - }, - "departure": { - "time": "1763604069" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604107" - }, - "departure": { - "time": "1763604107" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604168" - }, - "departure": { - "time": "1763604168" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604240" - }, - "departure": { - "time": "1763604240" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604400" - }, - "departure": { - "time": "1763604400" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604468" - }, - "departure": { - "time": "1763604468" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604559" - }, - "departure": { - "time": "1763604559" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604660" - }, - "departure": { - "time": "1763604660" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604720" - }, - "departure": { - "time": "1763604720" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "11021" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5529784_17071", - "tripUpdate": { - "trip": { - "tripId": "5529784", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 15, - "arrival": { - "time": "1763603040" - }, - "departure": { - "time": "1763603040" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603139" - }, - "departure": { - "time": "1763603139" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603212" - }, - "departure": { - "time": "1763603212" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603253" - }, - "departure": { - "time": "1763603253" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603286" - }, - "departure": { - "time": "1763603286" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603318" - }, - "departure": { - "time": "1763603318" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603340" - }, - "departure": { - "time": "1763603340" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603375" - }, - "departure": { - "time": "1763603375" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603400" - }, - "departure": { - "time": "1763603400" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603410" - }, - "departure": { - "time": "1763603410" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603423" - }, - "departure": { - "time": "1763603423" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603531" - }, - "departure": { - "time": "1763603531" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603580" - }, - "departure": { - "time": "1763603580" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603633" - }, - "departure": { - "time": "1763603633" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603665" - }, - "departure": { - "time": "1763603665" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603688" - }, - "departure": { - "time": "1763603688" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603712" - }, - "departure": { - "time": "1763603712" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603751" - }, - "departure": { - "time": "1763603751" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603837" - }, - "departure": { - "time": "1763603837" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603864" - }, - "departure": { - "time": "1763603864" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603879" - }, - "departure": { - "time": "1763603879" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604033" - }, - "departure": { - "time": "1763604033" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604087" - }, - "departure": { - "time": "1763604087" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604120" - }, - "departure": { - "time": "1763604120" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604187" - }, - "departure": { - "time": "1763604187" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604213" - }, - "departure": { - "time": "1763604213" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604239" - }, - "departure": { - "time": "1763604239" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604300" - }, - "departure": { - "time": "1763604300" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17071" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5530090_17076", - "tripUpdate": { - "trip": { - "tripId": "5530090", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 15, - "arrival": { - "time": "1763602973" - }, - "departure": { - "time": "1763602973" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763603040" - }, - "departure": { - "time": "1763603040" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603160" - }, - "departure": { - "time": "1763603160" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603350" - }, - "departure": { - "time": "1763603350" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603463" - }, - "departure": { - "time": "1763603463" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603533" - }, - "departure": { - "time": "1763603533" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603552" - }, - "departure": { - "time": "1763603552" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603580" - }, - "departure": { - "time": "1763603580" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603618" - }, - "departure": { - "time": "1763603618" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603647" - }, - "departure": { - "time": "1763603647" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603664" - }, - "departure": { - "time": "1763603664" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603689" - }, - "departure": { - "time": "1763603689" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603749" - }, - "departure": { - "time": "1763603749" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603820" - }, - "departure": { - "time": "1763603820" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603857" - }, - "departure": { - "time": "1763603857" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603893" - }, - "departure": { - "time": "1763603893" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603940" - }, - "departure": { - "time": "1763603940" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603957" - }, - "departure": { - "time": "1763603957" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604011" - }, - "departure": { - "time": "1763604011" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604041" - }, - "departure": { - "time": "1763604041" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604153" - }, - "departure": { - "time": "1763604153" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604180" - }, - "departure": { - "time": "1763604180" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604272" - }, - "departure": { - "time": "1763604272" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604300" - }, - "departure": { - "time": "1763604300" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604340" - }, - "departure": { - "time": "1763604340" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604378" - }, - "departure": { - "time": "1763604378" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604387" - }, - "departure": { - "time": "1763604387" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604413" - }, - "departure": { - "time": "1763604413" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604439" - }, - "departure": { - "time": "1763604439" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604465" - }, - "departure": { - "time": "1763604465" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604492" - }, - "departure": { - "time": "1763604492" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604521" - }, - "departure": { - "time": "1763604521" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604551" - }, - "departure": { - "time": "1763604551" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763604576" - }, - "departure": { - "time": "1763604576" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763604599" - }, - "departure": { - "time": "1763604599" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763604660" - }, - "departure": { - "time": "1763604660" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17076" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5531000_17206", - "tripUpdate": { - "trip": { - "tripId": "5531000", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 15, - "arrival": { - "time": "1763602956" - }, - "departure": { - "time": "1763602956" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763602982" - }, - "departure": { - "time": "1763602982" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603000" - }, - "departure": { - "time": "1763603000" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603065" - }, - "departure": { - "time": "1763603065" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603099" - }, - "departure": { - "time": "1763603099" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603142" - }, - "departure": { - "time": "1763603142" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603219" - }, - "departure": { - "time": "1763603219" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603279" - }, - "departure": { - "time": "1763603279" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603410" - }, - "departure": { - "time": "1763603410" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603459" - }, - "departure": { - "time": "1763603459" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603539" - }, - "departure": { - "time": "1763603539" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603561" - }, - "departure": { - "time": "1763603561" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603699" - }, - "departure": { - "time": "1763603699" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17206" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5531096_18203", - "tripUpdate": { - "trip": { - "tripId": "5531096", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 15, - "arrival": { - "time": "1763603100" - }, - "departure": { - "time": "1763603100" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "18203" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5535339_24207", - "tripUpdate": { - "trip": { - "tripId": "5535339", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 15, - "arrival": { - "time": "1763602097" - }, - "departure": { - "time": "1763602097" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 16, - "arrival": { - "time": "1763602153" - }, - "departure": { - "time": "1763602153" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763602257" - }, - "departure": { - "time": "1763602257" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763602405" - }, - "departure": { - "time": "1763602405" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763602488" - }, - "departure": { - "time": "1763602488" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "24207" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5523880_15002", - "tripUpdate": { - "trip": { - "tripId": "5523880", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 16, - "arrival": { - "time": "1763602987" - }, - "departure": { - "time": "1763602987" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603088" - }, - "departure": { - "time": "1763603088" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603169" - }, - "departure": { - "time": "1763603169" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603320" - }, - "departure": { - "time": "1763603320" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603502" - }, - "departure": { - "time": "1763603502" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603706" - }, - "departure": { - "time": "1763603706" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603769" - }, - "departure": { - "time": "1763603769" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603924" - }, - "departure": { - "time": "1763603924" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763604129" - }, - "departure": { - "time": "1763604129" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763604183" - }, - "departure": { - "time": "1763604183" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763604231" - }, - "departure": { - "time": "1763604231" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763604272" - }, - "departure": { - "time": "1763604272" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763604337" - }, - "departure": { - "time": "1763604337" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763604389" - }, - "departure": { - "time": "1763604389" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763604468" - }, - "departure": { - "time": "1763604468" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763604527" - }, - "departure": { - "time": "1763604527" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763604606" - }, - "departure": { - "time": "1763604606" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604646" - }, - "departure": { - "time": "1763604646" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604717" - }, - "departure": { - "time": "1763604717" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604770" - }, - "departure": { - "time": "1763604770" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604863" - }, - "departure": { - "time": "1763604863" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604969" - }, - "departure": { - "time": "1763604969" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763605509" - }, - "departure": { - "time": "1763605509" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "15002" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525236_13031", - "tripUpdate": { - "trip": { - "tripId": "5525236", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 16, - "arrival": { - "time": "1763602929" - }, - "departure": { - "time": "1763602929" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603154" - }, - "departure": { - "time": "1763603154" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603189" - }, - "departure": { - "time": "1763603189" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603233" - }, - "departure": { - "time": "1763603233" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603331" - }, - "departure": { - "time": "1763603331" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603379" - }, - "departure": { - "time": "1763603379" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603440" - }, - "departure": { - "time": "1763603440" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603472" - }, - "departure": { - "time": "1763603472" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603514" - }, - "departure": { - "time": "1763603514" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603625" - }, - "departure": { - "time": "1763603625" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603677" - }, - "departure": { - "time": "1763603677" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603756" - }, - "departure": { - "time": "1763603756" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603836" - }, - "departure": { - "time": "1763603836" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603915" - }, - "departure": { - "time": "1763603915" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603997" - }, - "departure": { - "time": "1763603997" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763604114" - }, - "departure": { - "time": "1763604114" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763604155" - }, - "departure": { - "time": "1763604155" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604183" - }, - "departure": { - "time": "1763604183" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604240" - }, - "departure": { - "time": "1763604240" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604282" - }, - "departure": { - "time": "1763604282" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604310" - }, - "departure": { - "time": "1763604310" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604386" - }, - "departure": { - "time": "1763604386" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604483" - }, - "departure": { - "time": "1763604483" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604549" - }, - "departure": { - "time": "1763604549" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604591" - }, - "departure": { - "time": "1763604591" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604659" - }, - "departure": { - "time": "1763604659" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604709" - }, - "departure": { - "time": "1763604709" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604773" - }, - "departure": { - "time": "1763604773" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604834" - }, - "departure": { - "time": "1763604834" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604881" - }, - "departure": { - "time": "1763604881" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604920" - }, - "departure": { - "time": "1763604920" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604978" - }, - "departure": { - "time": "1763604978" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763605004" - }, - "departure": { - "time": "1763605004" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763605071" - }, - "departure": { - "time": "1763605071" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763605131" - }, - "departure": { - "time": "1763605131" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763605165" - }, - "departure": { - "time": "1763605165" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763605217" - }, - "departure": { - "time": "1763605217" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763605257" - }, - "departure": { - "time": "1763605257" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763605314" - }, - "departure": { - "time": "1763605314" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763605336" - }, - "departure": { - "time": "1763605336" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763605381" - }, - "departure": { - "time": "1763605381" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763605410" - }, - "departure": { - "time": "1763605410" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763605436" - }, - "departure": { - "time": "1763605436" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763605484" - }, - "departure": { - "time": "1763605484" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763605554" - }, - "departure": { - "time": "1763605554" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763605575" - }, - "departure": { - "time": "1763605575" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763605620" - }, - "departure": { - "time": "1763605620" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763605645" - }, - "departure": { - "time": "1763605645" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763605677" - }, - "departure": { - "time": "1763605677" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763605707" - }, - "departure": { - "time": "1763605707" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763605755" - }, - "departure": { - "time": "1763605755" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763605794" - }, - "departure": { - "time": "1763605794" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763605900" - }, - "departure": { - "time": "1763605900" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763606033" - }, - "departure": { - "time": "1763606033" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763606226" - }, - "departure": { - "time": "1763606226" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763606321" - }, - "departure": { - "time": "1763606321" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763606403" - }, - "departure": { - "time": "1763606403" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763606574" - }, - "departure": { - "time": "1763606574" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "13031" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525799_L3", - "tripUpdate": { - "trip": { - "tripId": "5525799", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 16, - "arrival": { - "time": "1763603679" - }, - "departure": { - "time": "1763603679" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "L3" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5530668_24205", - "tripUpdate": { - "trip": { - "tripId": "5530668", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 16, - "arrival": { - "time": "1763603280" - }, - "departure": { - "time": "1763603280" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "24205" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5575062_23216", - "tripUpdate": { - "trip": { - "tripId": "5575062", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 16, - "arrival": { - "time": "1763602982" - }, - "departure": { - "time": "1763602982" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763603032" - }, - "departure": { - "time": "1763603032" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603164" - }, - "departure": { - "time": "1763603164" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603376" - }, - "departure": { - "time": "1763603376" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603452" - }, - "departure": { - "time": "1763603452" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23216" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5617914_22017", - "tripUpdate": { - "trip": { - "tripId": "5617914", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 16, - "arrival": { - "time": "1763602868" - }, - "departure": { - "time": "1763602868" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763602922" - }, - "departure": { - "time": "1763602922" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763602991" - }, - "departure": { - "time": "1763602991" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603030" - }, - "departure": { - "time": "1763603030" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603074" - }, - "departure": { - "time": "1763603074" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603160" - }, - "departure": { - "time": "1763603160" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603209" - }, - "departure": { - "time": "1763603209" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603247" - }, - "departure": { - "time": "1763603247" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603306" - }, - "departure": { - "time": "1763603306" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603354" - }, - "departure": { - "time": "1763603354" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603392" - }, - "departure": { - "time": "1763603392" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603440" - }, - "departure": { - "time": "1763603440" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603546" - }, - "departure": { - "time": "1763603546" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603609" - }, - "departure": { - "time": "1763603609" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603665" - }, - "departure": { - "time": "1763603665" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603705" - }, - "departure": { - "time": "1763603705" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603756" - }, - "departure": { - "time": "1763603756" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603816" - }, - "departure": { - "time": "1763603816" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603862" - }, - "departure": { - "time": "1763603862" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603931" - }, - "departure": { - "time": "1763603931" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603965" - }, - "departure": { - "time": "1763603965" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603989" - }, - "departure": { - "time": "1763603989" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604020" - }, - "departure": { - "time": "1763604020" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604072" - }, - "departure": { - "time": "1763604072" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604154" - }, - "departure": { - "time": "1763604154" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604187" - }, - "departure": { - "time": "1763604187" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604217" - }, - "departure": { - "time": "1763604217" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604254" - }, - "departure": { - "time": "1763604254" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604326" - }, - "departure": { - "time": "1763604326" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604419" - }, - "departure": { - "time": "1763604419" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604506" - }, - "departure": { - "time": "1763604506" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604556" - }, - "departure": { - "time": "1763604556" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763604615" - }, - "departure": { - "time": "1763604615" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763604671" - }, - "departure": { - "time": "1763604671" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763604721" - }, - "departure": { - "time": "1763604721" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763604748" - }, - "departure": { - "time": "1763604748" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763604820" - }, - "departure": { - "time": "1763604820" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763604913" - }, - "departure": { - "time": "1763604913" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763605040" - }, - "departure": { - "time": "1763605040" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763605127" - }, - "departure": { - "time": "1763605127" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763605226" - }, - "departure": { - "time": "1763605226" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "22017" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5618376_21007", - "tripUpdate": { - "trip": { - "tripId": "5618376", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 16, - "arrival": { - "time": "1763604199" - }, - "departure": { - "time": "1763604199" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 17, - "arrival": { - "time": "1763604292" - }, - "departure": { - "time": "1763604292" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763604370" - }, - "departure": { - "time": "1763604370" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763604479" - }, - "departure": { - "time": "1763604479" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763604654" - }, - "departure": { - "time": "1763604654" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "21007" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5523833_15020", - "tripUpdate": { - "trip": { - "tripId": "5523833", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 17, - "arrival": { - "time": "1763603174" - }, - "departure": { - "time": "1763603174" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603236" - }, - "departure": { - "time": "1763603236" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603308" - }, - "departure": { - "time": "1763603308" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603393" - }, - "departure": { - "time": "1763603393" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603466" - }, - "departure": { - "time": "1763603466" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603536" - }, - "departure": { - "time": "1763603536" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603596" - }, - "departure": { - "time": "1763603596" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603656" - }, - "departure": { - "time": "1763603656" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603720" - }, - "departure": { - "time": "1763603720" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603779" - }, - "departure": { - "time": "1763603779" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603836" - }, - "departure": { - "time": "1763603836" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603948" - }, - "departure": { - "time": "1763603948" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763604051" - }, - "departure": { - "time": "1763604051" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763604130" - }, - "departure": { - "time": "1763604130" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763604206" - }, - "departure": { - "time": "1763604206" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763604496" - }, - "departure": { - "time": "1763604496" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604604" - }, - "departure": { - "time": "1763604604" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604740" - }, - "departure": { - "time": "1763604740" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604830" - }, - "departure": { - "time": "1763604830" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604953" - }, - "departure": { - "time": "1763604953" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763605036" - }, - "departure": { - "time": "1763605036" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "15020" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5524500_23111", - "tripUpdate": { - "trip": { - "tripId": "5524500", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 17, - "arrival": { - "time": "1763603000" - }, - "departure": { - "time": "1763603000" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603048" - }, - "departure": { - "time": "1763603048" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603112" - }, - "departure": { - "time": "1763603112" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603228" - }, - "departure": { - "time": "1763603228" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603288" - }, - "departure": { - "time": "1763603288" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23111" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5527940_23007", - "tripUpdate": { - "trip": { - "tripId": "5527940", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 17, - "arrival": { - "time": "1763603273" - }, - "departure": { - "time": "1763603273" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603328" - }, - "departure": { - "time": "1763603328" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603354" - }, - "departure": { - "time": "1763603354" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603378" - }, - "departure": { - "time": "1763603378" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603410" - }, - "departure": { - "time": "1763603410" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603437" - }, - "departure": { - "time": "1763603437" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603487" - }, - "departure": { - "time": "1763603487" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603537" - }, - "departure": { - "time": "1763603537" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603578" - }, - "departure": { - "time": "1763603578" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603640" - }, - "departure": { - "time": "1763603640" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603693" - }, - "departure": { - "time": "1763603693" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603784" - }, - "departure": { - "time": "1763603784" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603844" - }, - "departure": { - "time": "1763603844" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603903" - }, - "departure": { - "time": "1763603903" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603964" - }, - "departure": { - "time": "1763603964" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603988" - }, - "departure": { - "time": "1763603988" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604035" - }, - "departure": { - "time": "1763604035" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604059" - }, - "departure": { - "time": "1763604059" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604113" - }, - "departure": { - "time": "1763604113" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604147" - }, - "departure": { - "time": "1763604147" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604184" - }, - "departure": { - "time": "1763604184" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604210" - }, - "departure": { - "time": "1763604210" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604278" - }, - "departure": { - "time": "1763604278" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604311" - }, - "departure": { - "time": "1763604311" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604326" - }, - "departure": { - "time": "1763604326" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604353" - }, - "departure": { - "time": "1763604353" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604381" - }, - "departure": { - "time": "1763604381" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604425" - }, - "departure": { - "time": "1763604425" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604449" - }, - "departure": { - "time": "1763604449" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604484" - }, - "departure": { - "time": "1763604484" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604503" - }, - "departure": { - "time": "1763604503" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763604526" - }, - "departure": { - "time": "1763604526" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763604546" - }, - "departure": { - "time": "1763604546" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763604601" - }, - "departure": { - "time": "1763604601" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763604638" - }, - "departure": { - "time": "1763604638" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763604671" - }, - "departure": { - "time": "1763604671" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763604688" - }, - "departure": { - "time": "1763604688" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763604723" - }, - "departure": { - "time": "1763604723" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763604746" - }, - "departure": { - "time": "1763604746" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763604762" - }, - "departure": { - "time": "1763604762" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763604833" - }, - "departure": { - "time": "1763604833" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763604861" - }, - "departure": { - "time": "1763604861" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763604918" - }, - "departure": { - "time": "1763604918" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763604955" - }, - "departure": { - "time": "1763604955" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763605011" - }, - "departure": { - "time": "1763605011" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763605065" - }, - "departure": { - "time": "1763605065" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763605113" - }, - "departure": { - "time": "1763605113" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763605149" - }, - "departure": { - "time": "1763605149" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763605173" - }, - "departure": { - "time": "1763605173" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763605253" - }, - "departure": { - "time": "1763605253" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763605290" - }, - "departure": { - "time": "1763605290" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763605312" - }, - "departure": { - "time": "1763605312" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763605433" - }, - "departure": { - "time": "1763605433" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23007" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5530499_11025", - "tripUpdate": { - "trip": { - "tripId": "5530499", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 17, - "arrival": { - "time": "1763603131" - }, - "departure": { - "time": "1763603131" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603164" - }, - "departure": { - "time": "1763603164" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603242" - }, - "departure": { - "time": "1763603242" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603295" - }, - "departure": { - "time": "1763603295" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603460" - }, - "departure": { - "time": "1763603460" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603600" - }, - "departure": { - "time": "1763603600" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603634" - }, - "departure": { - "time": "1763603634" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603698" - }, - "departure": { - "time": "1763603698" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603785" - }, - "departure": { - "time": "1763603785" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603940" - }, - "departure": { - "time": "1763603940" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603973" - }, - "departure": { - "time": "1763603973" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763604010" - }, - "departure": { - "time": "1763604010" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763604073" - }, - "departure": { - "time": "1763604073" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763604103" - }, - "departure": { - "time": "1763604103" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763604132" - }, - "departure": { - "time": "1763604132" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763604180" - }, - "departure": { - "time": "1763604180" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604360" - }, - "departure": { - "time": "1763604360" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604439" - }, - "departure": { - "time": "1763604439" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604495" - }, - "departure": { - "time": "1763604495" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604543" - }, - "departure": { - "time": "1763604543" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604600" - }, - "departure": { - "time": "1763604600" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604627" - }, - "departure": { - "time": "1763604627" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604692" - }, - "departure": { - "time": "1763604692" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604725" - }, - "departure": { - "time": "1763604725" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604749" - }, - "departure": { - "time": "1763604749" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604794" - }, - "departure": { - "time": "1763604794" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604842" - }, - "departure": { - "time": "1763604842" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604896" - }, - "departure": { - "time": "1763604896" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604928" - }, - "departure": { - "time": "1763604928" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604944" - }, - "departure": { - "time": "1763604944" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604990" - }, - "departure": { - "time": "1763604990" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763605020" - }, - "departure": { - "time": "1763605020" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763605074" - }, - "departure": { - "time": "1763605074" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763605139" - }, - "departure": { - "time": "1763605139" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763605182" - }, - "departure": { - "time": "1763605182" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763605205" - }, - "departure": { - "time": "1763605205" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763605234" - }, - "departure": { - "time": "1763605234" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763605290" - }, - "departure": { - "time": "1763605290" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763605380" - }, - "departure": { - "time": "1763605380" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763605428" - }, - "departure": { - "time": "1763605428" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763605472" - }, - "departure": { - "time": "1763605472" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763605507" - }, - "departure": { - "time": "1763605507" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763605569" - }, - "departure": { - "time": "1763605569" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763605608" - }, - "departure": { - "time": "1763605608" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763605644" - }, - "departure": { - "time": "1763605644" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763605680" - }, - "departure": { - "time": "1763605680" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763605709" - }, - "departure": { - "time": "1763605709" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763605756" - }, - "departure": { - "time": "1763605756" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763605777" - }, - "departure": { - "time": "1763605777" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763605832" - }, - "departure": { - "time": "1763605832" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763605883" - }, - "departure": { - "time": "1763605883" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763605908" - }, - "departure": { - "time": "1763605908" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763605980" - }, - "departure": { - "time": "1763605980" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763606137" - }, - "departure": { - "time": "1763606137" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763606221" - }, - "departure": { - "time": "1763606221" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763606285" - }, - "departure": { - "time": "1763606285" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763606340" - }, - "departure": { - "time": "1763606340" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763606427" - }, - "departure": { - "time": "1763606427" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763606460" - }, - "departure": { - "time": "1763606460" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763606517" - }, - "departure": { - "time": "1763606517" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763606543" - }, - "departure": { - "time": "1763606543" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763606585" - }, - "departure": { - "time": "1763606585" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763606627" - }, - "departure": { - "time": "1763606627" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763606668" - }, - "departure": { - "time": "1763606668" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763606683" - }, - "departure": { - "time": "1763606683" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763606708" - }, - "departure": { - "time": "1763606708" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 83, - "arrival": { - "time": "1763606880" - }, - "departure": { - "time": "1763606880" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 84, - "arrival": { - "time": "1763607000" - }, - "departure": { - "time": "1763607000" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "11025" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5619653_1007B", - "tripUpdate": { - "trip": { - "tripId": "5619653", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 17, - "arrival": { - "time": "1763602994" - }, - "departure": { - "time": "1763602994" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 18, - "arrival": { - "time": "1763603114" - }, - "departure": { - "time": "1763603114" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603294" - }, - "departure": { - "time": "1763603294" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603354" - }, - "departure": { - "time": "1763603354" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603474" - }, - "departure": { - "time": "1763603474" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603654" - }, - "departure": { - "time": "1763603654" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603774" - }, - "departure": { - "time": "1763603774" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603894" - }, - "departure": { - "time": "1763603894" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "1007B" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5524848_18022", - "tripUpdate": { - "trip": { - "tripId": "5524848", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 18, - "arrival": { - "time": "1763602962" - }, - "departure": { - "time": "1763602962" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603013" - }, - "departure": { - "time": "1763603013" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603055" - }, - "departure": { - "time": "1763603055" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603111" - }, - "departure": { - "time": "1763603111" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603164" - }, - "departure": { - "time": "1763603164" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603211" - }, - "departure": { - "time": "1763603211" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603256" - }, - "departure": { - "time": "1763603256" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603294" - }, - "departure": { - "time": "1763603294" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603340" - }, - "departure": { - "time": "1763603340" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603369" - }, - "departure": { - "time": "1763603369" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603414" - }, - "departure": { - "time": "1763603414" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603467" - }, - "departure": { - "time": "1763603467" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603511" - }, - "departure": { - "time": "1763603511" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603562" - }, - "departure": { - "time": "1763603562" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603670" - }, - "departure": { - "time": "1763603670" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603770" - }, - "departure": { - "time": "1763603770" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603820" - }, - "departure": { - "time": "1763603820" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603869" - }, - "departure": { - "time": "1763603869" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603900" - }, - "departure": { - "time": "1763603900" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603950" - }, - "departure": { - "time": "1763603950" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604060" - }, - "departure": { - "time": "1763604060" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604116" - }, - "departure": { - "time": "1763604116" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604171" - }, - "departure": { - "time": "1763604171" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604212" - }, - "departure": { - "time": "1763604212" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604264" - }, - "departure": { - "time": "1763604264" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604304" - }, - "departure": { - "time": "1763604304" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604360" - }, - "departure": { - "time": "1763604360" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604467" - }, - "departure": { - "time": "1763604467" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604571" - }, - "departure": { - "time": "1763604571" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604660" - }, - "departure": { - "time": "1763604660" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763604752" - }, - "departure": { - "time": "1763604752" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763604830" - }, - "departure": { - "time": "1763604830" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763604910" - }, - "departure": { - "time": "1763604910" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763605101" - }, - "departure": { - "time": "1763605101" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763605200" - }, - "departure": { - "time": "1763605200" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "18022" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525267_10006", - "tripUpdate": { - "trip": { - "tripId": "5525267", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 18, - "arrival": { - "time": "1763602953" - }, - "departure": { - "time": "1763602953" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763602993" - }, - "departure": { - "time": "1763602993" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603037" - }, - "departure": { - "time": "1763603037" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603056" - }, - "departure": { - "time": "1763603056" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603135" - }, - "departure": { - "time": "1763603135" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603182" - }, - "departure": { - "time": "1763603182" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603208" - }, - "departure": { - "time": "1763603208" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603259" - }, - "departure": { - "time": "1763603259" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603290" - }, - "departure": { - "time": "1763603290" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603340" - }, - "departure": { - "time": "1763603340" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603402" - }, - "departure": { - "time": "1763603402" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603468" - }, - "departure": { - "time": "1763603468" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603534" - }, - "departure": { - "time": "1763603534" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603584" - }, - "departure": { - "time": "1763603584" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603626" - }, - "departure": { - "time": "1763603626" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603694" - }, - "departure": { - "time": "1763603694" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603801" - }, - "departure": { - "time": "1763603801" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603883" - }, - "departure": { - "time": "1763603883" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603915" - }, - "departure": { - "time": "1763603915" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603972" - }, - "departure": { - "time": "1763603972" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604019" - }, - "departure": { - "time": "1763604019" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604065" - }, - "departure": { - "time": "1763604065" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604120" - }, - "departure": { - "time": "1763604120" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604211" - }, - "departure": { - "time": "1763604211" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604293" - }, - "departure": { - "time": "1763604293" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604349" - }, - "departure": { - "time": "1763604349" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604432" - }, - "departure": { - "time": "1763604432" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604513" - }, - "departure": { - "time": "1763604513" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604597" - }, - "departure": { - "time": "1763604597" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604720" - }, - "departure": { - "time": "1763604720" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763604784" - }, - "departure": { - "time": "1763604784" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763604841" - }, - "departure": { - "time": "1763604841" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763604892" - }, - "departure": { - "time": "1763604892" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763604957" - }, - "departure": { - "time": "1763604957" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763605010" - }, - "departure": { - "time": "1763605010" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763605089" - }, - "departure": { - "time": "1763605089" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763605138" - }, - "departure": { - "time": "1763605138" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763605200" - }, - "departure": { - "time": "1763605200" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763605570" - }, - "departure": { - "time": "1763605570" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763605634" - }, - "departure": { - "time": "1763605634" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763605768" - }, - "departure": { - "time": "1763605768" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763605811" - }, - "departure": { - "time": "1763605811" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763605934" - }, - "departure": { - "time": "1763605934" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763606061" - }, - "departure": { - "time": "1763606061" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763606146" - }, - "departure": { - "time": "1763606146" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763606225" - }, - "departure": { - "time": "1763606225" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763606280" - }, - "departure": { - "time": "1763606280" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763606463" - }, - "departure": { - "time": "1763606463" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763607000" - }, - "departure": { - "time": "1763607000" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "10006" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5527290_12004", - "tripUpdate": { - "trip": { - "tripId": "5527290", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 18, - "arrival": { - "time": "1763602953" - }, - "departure": { - "time": "1763602953" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603005" - }, - "departure": { - "time": "1763603005" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603029" - }, - "departure": { - "time": "1763603029" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603070" - }, - "departure": { - "time": "1763603070" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603160" - }, - "departure": { - "time": "1763603160" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603520" - }, - "departure": { - "time": "1763603520" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603607" - }, - "departure": { - "time": "1763603607" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603649" - }, - "departure": { - "time": "1763603649" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603681" - }, - "departure": { - "time": "1763603681" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603710" - }, - "departure": { - "time": "1763603710" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603734" - }, - "departure": { - "time": "1763603734" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603762" - }, - "departure": { - "time": "1763603762" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603797" - }, - "departure": { - "time": "1763603797" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603838" - }, - "departure": { - "time": "1763603838" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603854" - }, - "departure": { - "time": "1763603854" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603880" - }, - "departure": { - "time": "1763603880" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603901" - }, - "departure": { - "time": "1763603901" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603919" - }, - "departure": { - "time": "1763603919" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603973" - }, - "departure": { - "time": "1763603973" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604018" - }, - "departure": { - "time": "1763604018" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604060" - }, - "departure": { - "time": "1763604060" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604099" - }, - "departure": { - "time": "1763604099" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604153" - }, - "departure": { - "time": "1763604153" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604211" - }, - "departure": { - "time": "1763604211" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604317" - }, - "departure": { - "time": "1763604317" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604335" - }, - "departure": { - "time": "1763604335" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604370" - }, - "departure": { - "time": "1763604370" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604420" - }, - "departure": { - "time": "1763604420" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604473" - }, - "departure": { - "time": "1763604473" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604518" - }, - "departure": { - "time": "1763604518" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763604565" - }, - "departure": { - "time": "1763604565" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763604607" - }, - "departure": { - "time": "1763604607" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763604653" - }, - "departure": { - "time": "1763604653" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763604681" - }, - "departure": { - "time": "1763604681" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763604709" - }, - "departure": { - "time": "1763604709" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763604751" - }, - "departure": { - "time": "1763604751" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763604780" - }, - "departure": { - "time": "1763604780" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763605018" - }, - "departure": { - "time": "1763605018" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763605091" - }, - "departure": { - "time": "1763605091" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763605197" - }, - "departure": { - "time": "1763605197" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763605227" - }, - "departure": { - "time": "1763605227" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763605281" - }, - "departure": { - "time": "1763605281" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763605320" - }, - "departure": { - "time": "1763605320" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "12004" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5527997_23014", - "tripUpdate": { - "trip": { - "tripId": "5527997", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 18, - "arrival": { - "time": "1763602844" - }, - "departure": { - "time": "1763602844" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763602870" - }, - "departure": { - "time": "1763602870" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763602894" - }, - "departure": { - "time": "1763602894" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763602926" - }, - "departure": { - "time": "1763602926" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763602953" - }, - "departure": { - "time": "1763602953" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603003" - }, - "departure": { - "time": "1763603003" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603053" - }, - "departure": { - "time": "1763603053" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603094" - }, - "departure": { - "time": "1763603094" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603156" - }, - "departure": { - "time": "1763603156" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603209" - }, - "departure": { - "time": "1763603209" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603300" - }, - "departure": { - "time": "1763603300" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603360" - }, - "departure": { - "time": "1763603360" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603419" - }, - "departure": { - "time": "1763603419" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603480" - }, - "departure": { - "time": "1763603480" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603504" - }, - "departure": { - "time": "1763603504" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603551" - }, - "departure": { - "time": "1763603551" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603575" - }, - "departure": { - "time": "1763603575" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603629" - }, - "departure": { - "time": "1763603629" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603663" - }, - "departure": { - "time": "1763603663" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603700" - }, - "departure": { - "time": "1763603700" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603726" - }, - "departure": { - "time": "1763603726" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603794" - }, - "departure": { - "time": "1763603794" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603827" - }, - "departure": { - "time": "1763603827" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603842" - }, - "departure": { - "time": "1763603842" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603869" - }, - "departure": { - "time": "1763603869" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603897" - }, - "departure": { - "time": "1763603897" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603941" - }, - "departure": { - "time": "1763603941" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603965" - }, - "departure": { - "time": "1763603965" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604000" - }, - "departure": { - "time": "1763604000" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604019" - }, - "departure": { - "time": "1763604019" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763604042" - }, - "departure": { - "time": "1763604042" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763604062" - }, - "departure": { - "time": "1763604062" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763604117" - }, - "departure": { - "time": "1763604117" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763604154" - }, - "departure": { - "time": "1763604154" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763604187" - }, - "departure": { - "time": "1763604187" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763604204" - }, - "departure": { - "time": "1763604204" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763604239" - }, - "departure": { - "time": "1763604239" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763604262" - }, - "departure": { - "time": "1763604262" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763604278" - }, - "departure": { - "time": "1763604278" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763604349" - }, - "departure": { - "time": "1763604349" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763604377" - }, - "departure": { - "time": "1763604377" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763604434" - }, - "departure": { - "time": "1763604434" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763604471" - }, - "departure": { - "time": "1763604471" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763604527" - }, - "departure": { - "time": "1763604527" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763604581" - }, - "departure": { - "time": "1763604581" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763604629" - }, - "departure": { - "time": "1763604629" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763604665" - }, - "departure": { - "time": "1763604665" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763604689" - }, - "departure": { - "time": "1763604689" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763604769" - }, - "departure": { - "time": "1763604769" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763604806" - }, - "departure": { - "time": "1763604806" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763604828" - }, - "departure": { - "time": "1763604828" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763604949" - }, - "departure": { - "time": "1763604949" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23014" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5619752_1135B", - "tripUpdate": { - "trip": { - "tripId": "5619752", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 18, - "arrival": { - "time": "1763602996" - }, - "departure": { - "time": "1763602996" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 19, - "arrival": { - "time": "1763603176" - }, - "departure": { - "time": "1763603176" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603296" - }, - "departure": { - "time": "1763603296" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603416" - }, - "departure": { - "time": "1763603416" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603536" - }, - "departure": { - "time": "1763603536" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603716" - }, - "departure": { - "time": "1763603716" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603956" - }, - "departure": { - "time": "1763603956" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763604136" - }, - "departure": { - "time": "1763604136" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763604256" - }, - "departure": { - "time": "1763604256" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763604376" - }, - "departure": { - "time": "1763604376" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "1135B" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5524227_13043", - "tripUpdate": { - "trip": { - "tripId": "5524227", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 19, - "arrival": { - "time": "1763602949" - }, - "departure": { - "time": "1763602949" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763602986" - }, - "departure": { - "time": "1763602986" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603024" - }, - "departure": { - "time": "1763603024" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603064" - }, - "departure": { - "time": "1763603064" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603105" - }, - "departure": { - "time": "1763603105" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603154" - }, - "departure": { - "time": "1763603154" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603232" - }, - "departure": { - "time": "1763603232" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603294" - }, - "departure": { - "time": "1763603294" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603428" - }, - "departure": { - "time": "1763603428" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603476" - }, - "departure": { - "time": "1763603476" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603735" - }, - "departure": { - "time": "1763603735" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603831" - }, - "departure": { - "time": "1763603831" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603892" - }, - "departure": { - "time": "1763603892" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603969" - }, - "departure": { - "time": "1763603969" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604012" - }, - "departure": { - "time": "1763604012" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604056" - }, - "departure": { - "time": "1763604056" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604094" - }, - "departure": { - "time": "1763604094" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604183" - }, - "departure": { - "time": "1763604183" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604252" - }, - "departure": { - "time": "1763604252" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604342" - }, - "departure": { - "time": "1763604342" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604447" - }, - "departure": { - "time": "1763604447" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604542" - }, - "departure": { - "time": "1763604542" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604630" - }, - "departure": { - "time": "1763604630" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604738" - }, - "departure": { - "time": "1763604738" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604806" - }, - "departure": { - "time": "1763604806" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604838" - }, - "departure": { - "time": "1763604838" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604972" - }, - "departure": { - "time": "1763604972" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "13043" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5524543_15017", - "tripUpdate": { - "trip": { - "tripId": "5524543", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 19, - "arrival": { - "time": "1763603025" - }, - "departure": { - "time": "1763603025" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "15017" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5528872_17021", - "tripUpdate": { - "trip": { - "tripId": "5528872", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 19, - "arrival": { - "time": "1763602966" - }, - "departure": { - "time": "1763602966" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603002" - }, - "departure": { - "time": "1763603002" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603086" - }, - "departure": { - "time": "1763603086" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603118" - }, - "departure": { - "time": "1763603118" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603148" - }, - "departure": { - "time": "1763603148" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603205" - }, - "departure": { - "time": "1763603205" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603252" - }, - "departure": { - "time": "1763603252" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603328" - }, - "departure": { - "time": "1763603328" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603372" - }, - "departure": { - "time": "1763603372" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603435" - }, - "departure": { - "time": "1763603435" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603511" - }, - "departure": { - "time": "1763603511" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603603" - }, - "departure": { - "time": "1763603603" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603662" - }, - "departure": { - "time": "1763603662" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603730" - }, - "departure": { - "time": "1763603730" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603776" - }, - "departure": { - "time": "1763603776" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603868" - }, - "departure": { - "time": "1763603868" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17021" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5529261_21021", - "tripUpdate": { - "trip": { - "tripId": "5529261", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 19, - "arrival": { - "time": "1763602999" - }, - "departure": { - "time": "1763602999" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603040" - }, - "departure": { - "time": "1763603040" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603285" - }, - "departure": { - "time": "1763603285" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603378" - }, - "departure": { - "time": "1763603378" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603423" - }, - "departure": { - "time": "1763603423" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603468" - }, - "departure": { - "time": "1763603468" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603493" - }, - "departure": { - "time": "1763603493" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603540" - }, - "departure": { - "time": "1763603540" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603586" - }, - "departure": { - "time": "1763603586" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603645" - }, - "departure": { - "time": "1763603645" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603685" - }, - "departure": { - "time": "1763603685" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603718" - }, - "departure": { - "time": "1763603718" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603748" - }, - "departure": { - "time": "1763603748" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603790" - }, - "departure": { - "time": "1763603790" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603811" - }, - "departure": { - "time": "1763603811" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603854" - }, - "departure": { - "time": "1763603854" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603885" - }, - "departure": { - "time": "1763603885" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603917" - }, - "departure": { - "time": "1763603917" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603935" - }, - "departure": { - "time": "1763603935" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603961" - }, - "departure": { - "time": "1763603961" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603982" - }, - "departure": { - "time": "1763603982" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604057" - }, - "departure": { - "time": "1763604057" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604099" - }, - "departure": { - "time": "1763604099" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604121" - }, - "departure": { - "time": "1763604121" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604159" - }, - "departure": { - "time": "1763604159" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604185" - }, - "departure": { - "time": "1763604185" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604234" - }, - "departure": { - "time": "1763604234" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604305" - }, - "departure": { - "time": "1763604305" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604346" - }, - "departure": { - "time": "1763604346" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763604374" - }, - "departure": { - "time": "1763604374" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763604425" - }, - "departure": { - "time": "1763604425" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763604491" - }, - "departure": { - "time": "1763604491" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763604545" - }, - "departure": { - "time": "1763604545" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "21021" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5575451_1155A", - "tripUpdate": { - "trip": { - "tripId": "5575451", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 19, - "arrival": { - "time": "1763603151" - }, - "departure": { - "time": "1763603151" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "1155A" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5618000_11002", - "tripUpdate": { - "trip": { - "tripId": "5618000", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 19, - "arrival": { - "time": "1763602966" - }, - "departure": { - "time": "1763602966" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603064" - }, - "departure": { - "time": "1763603064" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603147" - }, - "departure": { - "time": "1763603147" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603174" - }, - "departure": { - "time": "1763603174" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603205" - }, - "departure": { - "time": "1763603205" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603319" - }, - "departure": { - "time": "1763603319" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603346" - }, - "departure": { - "time": "1763603346" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603377" - }, - "departure": { - "time": "1763603377" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603454" - }, - "departure": { - "time": "1763603454" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603501" - }, - "departure": { - "time": "1763603501" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603526" - }, - "departure": { - "time": "1763603526" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603567" - }, - "departure": { - "time": "1763603567" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603600" - }, - "departure": { - "time": "1763603600" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603640" - }, - "departure": { - "time": "1763603640" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603745" - }, - "departure": { - "time": "1763603745" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "11002" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5619826_1118B", - "tripUpdate": { - "trip": { - "tripId": "5619826", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 19, - "arrival": { - "time": "1763603160" - }, - "departure": { - "time": "1763603160" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 20, - "arrival": { - "time": "1763603280" - }, - "departure": { - "time": "1763603280" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603460" - }, - "departure": { - "time": "1763603460" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603580" - }, - "departure": { - "time": "1763603580" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603700" - }, - "departure": { - "time": "1763603700" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603820" - }, - "departure": { - "time": "1763603820" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603940" - }, - "departure": { - "time": "1763603940" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763604060" - }, - "departure": { - "time": "1763604060" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763604180" - }, - "departure": { - "time": "1763604180" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "1118B" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5528071_23001", - "tripUpdate": { - "trip": { - "tripId": "5528071", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 20, - "arrival": { - "time": "1763602939" - }, - "departure": { - "time": "1763602939" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763602978" - }, - "departure": { - "time": "1763602978" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603001" - }, - "departure": { - "time": "1763603001" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603021" - }, - "departure": { - "time": "1763603021" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603048" - }, - "departure": { - "time": "1763603048" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603069" - }, - "departure": { - "time": "1763603069" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603092" - }, - "departure": { - "time": "1763603092" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603134" - }, - "departure": { - "time": "1763603134" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603278" - }, - "departure": { - "time": "1763603278" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603500" - }, - "departure": { - "time": "1763603500" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603614" - }, - "departure": { - "time": "1763603614" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603829" - }, - "departure": { - "time": "1763603829" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603885" - }, - "departure": { - "time": "1763603885" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603974" - }, - "departure": { - "time": "1763603974" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604010" - }, - "departure": { - "time": "1763604010" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604029" - }, - "departure": { - "time": "1763604029" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604101" - }, - "departure": { - "time": "1763604101" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604138" - }, - "departure": { - "time": "1763604138" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604168" - }, - "departure": { - "time": "1763604168" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604200" - }, - "departure": { - "time": "1763604200" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604232" - }, - "departure": { - "time": "1763604232" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604274" - }, - "departure": { - "time": "1763604274" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604393" - }, - "departure": { - "time": "1763604393" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604426" - }, - "departure": { - "time": "1763604426" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604462" - }, - "departure": { - "time": "1763604462" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604512" - }, - "departure": { - "time": "1763604512" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604851" - }, - "departure": { - "time": "1763604851" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604994" - }, - "departure": { - "time": "1763604994" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23001" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5530312_18102", - "tripUpdate": { - "trip": { - "tripId": "5530312", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 20, - "arrival": { - "time": "1763603131" - }, - "departure": { - "time": "1763603131" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603175" - }, - "departure": { - "time": "1763603175" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603221" - }, - "departure": { - "time": "1763603221" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603320" - }, - "departure": { - "time": "1763603320" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603368" - }, - "departure": { - "time": "1763603368" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603422" - }, - "departure": { - "time": "1763603422" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603453" - }, - "departure": { - "time": "1763603453" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603551" - }, - "departure": { - "time": "1763603551" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603616" - }, - "departure": { - "time": "1763603616" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603641" - }, - "departure": { - "time": "1763603641" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603821" - }, - "departure": { - "time": "1763603821" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "18102" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5619566_1037A", - "tripUpdate": { - "trip": { - "tripId": "5619566", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 20, - "arrival": { - "time": "1763603052" - }, - "departure": { - "time": "1763603052" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 21, - "arrival": { - "time": "1763603172" - }, - "departure": { - "time": "1763603172" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603292" - }, - "departure": { - "time": "1763603292" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603412" - }, - "departure": { - "time": "1763603412" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603592" - }, - "departure": { - "time": "1763603592" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "1037A" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5524156_15003", - "tripUpdate": { - "trip": { - "tripId": "5524156", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 21, - "arrival": { - "time": "1763603018" - }, - "departure": { - "time": "1763603018" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603073" - }, - "departure": { - "time": "1763603073" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603114" - }, - "departure": { - "time": "1763603114" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603162" - }, - "departure": { - "time": "1763603162" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603198" - }, - "departure": { - "time": "1763603198" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603246" - }, - "departure": { - "time": "1763603246" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603306" - }, - "departure": { - "time": "1763603306" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603353" - }, - "departure": { - "time": "1763603353" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603401" - }, - "departure": { - "time": "1763603401" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603449" - }, - "departure": { - "time": "1763603449" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603494" - }, - "departure": { - "time": "1763603494" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603532" - }, - "departure": { - "time": "1763603532" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603642" - }, - "departure": { - "time": "1763603642" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603688" - }, - "departure": { - "time": "1763603688" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603730" - }, - "departure": { - "time": "1763603730" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603768" - }, - "departure": { - "time": "1763603768" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603807" - }, - "departure": { - "time": "1763603807" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603868" - }, - "departure": { - "time": "1763603868" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603962" - }, - "departure": { - "time": "1763603962" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604009" - }, - "departure": { - "time": "1763604009" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604066" - }, - "departure": { - "time": "1763604066" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604172" - }, - "departure": { - "time": "1763604172" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604208" - }, - "departure": { - "time": "1763604208" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604245" - }, - "departure": { - "time": "1763604245" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604289" - }, - "departure": { - "time": "1763604289" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604402" - }, - "departure": { - "time": "1763604402" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604468" - }, - "departure": { - "time": "1763604468" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "15003" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5526163_17034", - "tripUpdate": { - "trip": { - "tripId": "5526163", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 21, - "arrival": { - "time": "1763602793" - }, - "departure": { - "time": "1763602793" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763602793" - }, - "departure": { - "time": "1763602793" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763602793" - }, - "departure": { - "time": "1763602793" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763602793" - }, - "departure": { - "time": "1763602793" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603033" - }, - "departure": { - "time": "1763603033" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603033" - }, - "departure": { - "time": "1763603033" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603033" - }, - "departure": { - "time": "1763603033" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603033" - }, - "departure": { - "time": "1763603033" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603033" - }, - "departure": { - "time": "1763603033" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603033" - }, - "departure": { - "time": "1763603033" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603033" - }, - "departure": { - "time": "1763603033" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603033" - }, - "departure": { - "time": "1763603033" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603033" - }, - "departure": { - "time": "1763603033" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603033" - }, - "departure": { - "time": "1763603033" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603393" - }, - "departure": { - "time": "1763603393" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603393" - }, - "departure": { - "time": "1763603393" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603393" - }, - "departure": { - "time": "1763603393" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603393" - }, - "departure": { - "time": "1763603393" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603393" - }, - "departure": { - "time": "1763603393" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603393" - }, - "departure": { - "time": "1763603393" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603393" - }, - "departure": { - "time": "1763603393" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603393" - }, - "departure": { - "time": "1763603393" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603633" - }, - "departure": { - "time": "1763603633" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603633" - }, - "departure": { - "time": "1763603633" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603633" - }, - "departure": { - "time": "1763603633" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603633" - }, - "departure": { - "time": "1763603633" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603633" - }, - "departure": { - "time": "1763603633" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603633" - }, - "departure": { - "time": "1763603633" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603873" - }, - "departure": { - "time": "1763603873" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603873" - }, - "departure": { - "time": "1763603873" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603873" - }, - "departure": { - "time": "1763603873" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603873" - }, - "departure": { - "time": "1763603873" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763603873" - }, - "departure": { - "time": "1763603873" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763604053" - }, - "departure": { - "time": "1763604053" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763604053" - }, - "departure": { - "time": "1763604053" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763604053" - }, - "departure": { - "time": "1763604053" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763604053" - }, - "departure": { - "time": "1763604053" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763604593" - }, - "departure": { - "time": "1763604593" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17034" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5619652_1038B", - "tripUpdate": { - "trip": { - "tripId": "5619652", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 21, - "arrival": { - "time": "1763602846" - }, - "departure": { - "time": "1763602846" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 22, - "arrival": { - "time": "1763603026" - }, - "departure": { - "time": "1763603026" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603146" - }, - "departure": { - "time": "1763603146" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603266" - }, - "departure": { - "time": "1763603266" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "1038B" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5526197_17026", - "tripUpdate": { - "trip": { - "tripId": "5526197", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 22, - "arrival": { - "time": "1763602895" - }, - "departure": { - "time": "1763602895" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763602914" - }, - "departure": { - "time": "1763602914" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763602954" - }, - "departure": { - "time": "1763602954" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763602974" - }, - "departure": { - "time": "1763602974" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603034" - }, - "departure": { - "time": "1763603034" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603075" - }, - "departure": { - "time": "1763603075" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603110" - }, - "departure": { - "time": "1763603110" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603134" - }, - "departure": { - "time": "1763603134" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603185" - }, - "departure": { - "time": "1763603185" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603211" - }, - "departure": { - "time": "1763603211" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603257" - }, - "departure": { - "time": "1763603257" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603308" - }, - "departure": { - "time": "1763603308" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603336" - }, - "departure": { - "time": "1763603336" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603377" - }, - "departure": { - "time": "1763603377" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603437" - }, - "departure": { - "time": "1763603437" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603458" - }, - "departure": { - "time": "1763603458" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603497" - }, - "departure": { - "time": "1763603497" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603523" - }, - "departure": { - "time": "1763603523" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603552" - }, - "departure": { - "time": "1763603552" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603575" - }, - "departure": { - "time": "1763603575" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603609" - }, - "departure": { - "time": "1763603609" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603622" - }, - "departure": { - "time": "1763603622" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603640" - }, - "departure": { - "time": "1763603640" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603676" - }, - "departure": { - "time": "1763603676" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603695" - }, - "departure": { - "time": "1763603695" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603714" - }, - "departure": { - "time": "1763603714" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603740" - }, - "departure": { - "time": "1763603740" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603764" - }, - "departure": { - "time": "1763603764" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603797" - }, - "departure": { - "time": "1763603797" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603958" - }, - "departure": { - "time": "1763603958" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763604015" - }, - "departure": { - "time": "1763604015" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763604115" - }, - "departure": { - "time": "1763604115" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763604225" - }, - "departure": { - "time": "1763604225" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763604259" - }, - "departure": { - "time": "1763604259" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763604337" - }, - "departure": { - "time": "1763604337" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17026" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5526958_23030", - "tripUpdate": { - "trip": { - "tripId": "5526958", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 22, - "arrival": { - "time": "1763602952" - }, - "departure": { - "time": "1763602952" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603018" - }, - "departure": { - "time": "1763603018" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603085" - }, - "departure": { - "time": "1763603085" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603118" - }, - "departure": { - "time": "1763603118" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603164" - }, - "departure": { - "time": "1763603164" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603222" - }, - "departure": { - "time": "1763603222" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603245" - }, - "departure": { - "time": "1763603245" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603283" - }, - "departure": { - "time": "1763603283" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603316" - }, - "departure": { - "time": "1763603316" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603347" - }, - "departure": { - "time": "1763603347" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603383" - }, - "departure": { - "time": "1763603383" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603445" - }, - "departure": { - "time": "1763603445" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603482" - }, - "departure": { - "time": "1763603482" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603530" - }, - "departure": { - "time": "1763603530" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603580" - }, - "departure": { - "time": "1763603580" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603613" - }, - "departure": { - "time": "1763603613" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603685" - }, - "departure": { - "time": "1763603685" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603771" - }, - "departure": { - "time": "1763603771" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603865" - }, - "departure": { - "time": "1763603865" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603901" - }, - "departure": { - "time": "1763603901" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603985" - }, - "departure": { - "time": "1763603985" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604015" - }, - "departure": { - "time": "1763604015" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604065" - }, - "departure": { - "time": "1763604065" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604130" - }, - "departure": { - "time": "1763604130" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604157" - }, - "departure": { - "time": "1763604157" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604206" - }, - "departure": { - "time": "1763604206" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763604285" - }, - "departure": { - "time": "1763604285" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763604440" - }, - "departure": { - "time": "1763604440" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763604488" - }, - "departure": { - "time": "1763604488" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763604587" - }, - "departure": { - "time": "1763604587" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763604657" - }, - "departure": { - "time": "1763604657" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763604746" - }, - "departure": { - "time": "1763604746" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763604885" - }, - "departure": { - "time": "1763604885" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23030" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5535105_19205", - "tripUpdate": { - "trip": { - "tripId": "5535105", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 22, - "arrival": { - "time": "1763602987" - }, - "departure": { - "time": "1763602987" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 23, - "arrival": { - "time": "1763603094" - }, - "departure": { - "time": "1763603094" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603162" - }, - "departure": { - "time": "1763603162" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603282" - }, - "departure": { - "time": "1763603282" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603340" - }, - "departure": { - "time": "1763603340" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603431" - }, - "departure": { - "time": "1763603431" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603463" - }, - "departure": { - "time": "1763603463" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603507" - }, - "departure": { - "time": "1763603507" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603545" - }, - "departure": { - "time": "1763603545" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603634" - }, - "departure": { - "time": "1763603634" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "19205" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5524911_15009", - "tripUpdate": { - "trip": { - "tripId": "5524911", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 23, - "arrival": { - "time": "1763602949" - }, - "departure": { - "time": "1763602949" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603000" - }, - "departure": { - "time": "1763603000" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603050" - }, - "departure": { - "time": "1763603050" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603104" - }, - "departure": { - "time": "1763603104" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603146" - }, - "departure": { - "time": "1763603146" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603181" - }, - "departure": { - "time": "1763603181" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603216" - }, - "departure": { - "time": "1763603216" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603279" - }, - "departure": { - "time": "1763603279" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603333" - }, - "departure": { - "time": "1763603333" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603381" - }, - "departure": { - "time": "1763603381" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603410" - }, - "departure": { - "time": "1763603410" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603481" - }, - "departure": { - "time": "1763603481" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603524" - }, - "departure": { - "time": "1763603524" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603584" - }, - "departure": { - "time": "1763603584" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603656" - }, - "departure": { - "time": "1763603656" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603708" - }, - "departure": { - "time": "1763603708" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603764" - }, - "departure": { - "time": "1763603764" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603820" - }, - "departure": { - "time": "1763603820" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603908" - }, - "departure": { - "time": "1763603908" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603968" - }, - "departure": { - "time": "1763603968" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604024" - }, - "departure": { - "time": "1763604024" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604064" - }, - "departure": { - "time": "1763604064" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604173" - }, - "departure": { - "time": "1763604173" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604481" - }, - "departure": { - "time": "1763604481" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604604" - }, - "departure": { - "time": "1763604604" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "15009" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5535058_21079", - "tripUpdate": { - "trip": { - "tripId": "5535058", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 23, - "arrival": { - "time": "1763603835" - }, - "departure": { - "time": "1763603835" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763604435" - }, - "departure": { - "time": "1763604435" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763604675" - }, - "departure": { - "time": "1763604675" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763604975" - }, - "departure": { - "time": "1763604975" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763605335" - }, - "departure": { - "time": "1763605335" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763605575" - }, - "departure": { - "time": "1763605575" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763605898" - }, - "departure": { - "time": "1763605898" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763606055" - }, - "departure": { - "time": "1763606055" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763606145" - }, - "departure": { - "time": "1763606145" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763606355" - }, - "departure": { - "time": "1763606355" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "21079" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5617316_21009", - "tripUpdate": { - "trip": { - "tripId": "5617316", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 23, - "arrival": { - "time": "1763602907" - }, - "departure": { - "time": "1763602907" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763602947" - }, - "departure": { - "time": "1763602947" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763602969" - }, - "departure": { - "time": "1763602969" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763602993" - }, - "departure": { - "time": "1763602993" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603237" - }, - "departure": { - "time": "1763603237" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603267" - }, - "departure": { - "time": "1763603267" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603323" - }, - "departure": { - "time": "1763603323" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603384" - }, - "departure": { - "time": "1763603384" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603452" - }, - "departure": { - "time": "1763603452" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603505" - }, - "departure": { - "time": "1763603505" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603567" - }, - "departure": { - "time": "1763603567" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603610" - }, - "departure": { - "time": "1763603610" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603699" - }, - "departure": { - "time": "1763603699" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603744" - }, - "departure": { - "time": "1763603744" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603796" - }, - "departure": { - "time": "1763603796" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603867" - }, - "departure": { - "time": "1763603867" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "21009" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5618217_22008", - "tripUpdate": { - "trip": { - "tripId": "5618217", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 23, - "arrival": { - "time": "1763602974" - }, - "departure": { - "time": "1763602974" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 24, - "arrival": { - "time": "1763603032" - }, - "departure": { - "time": "1763603032" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603055" - }, - "departure": { - "time": "1763603055" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603262" - }, - "departure": { - "time": "1763603262" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603328" - }, - "departure": { - "time": "1763603328" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603397" - }, - "departure": { - "time": "1763603397" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603463" - }, - "departure": { - "time": "1763603463" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603495" - }, - "departure": { - "time": "1763603495" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603534" - }, - "departure": { - "time": "1763603534" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603601" - }, - "departure": { - "time": "1763603601" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603675" - }, - "departure": { - "time": "1763603675" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603741" - }, - "departure": { - "time": "1763603741" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603814" - }, - "departure": { - "time": "1763603814" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603898" - }, - "departure": { - "time": "1763603898" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603949" - }, - "departure": { - "time": "1763603949" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603998" - }, - "departure": { - "time": "1763603998" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604091" - }, - "departure": { - "time": "1763604091" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604134" - }, - "departure": { - "time": "1763604134" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604161" - }, - "departure": { - "time": "1763604161" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604197" - }, - "departure": { - "time": "1763604197" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604240" - }, - "departure": { - "time": "1763604240" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604277" - }, - "departure": { - "time": "1763604277" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604298" - }, - "departure": { - "time": "1763604298" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604322" - }, - "departure": { - "time": "1763604322" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604396" - }, - "departure": { - "time": "1763604396" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763604428" - }, - "departure": { - "time": "1763604428" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763604457" - }, - "departure": { - "time": "1763604457" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763604487" - }, - "departure": { - "time": "1763604487" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763604571" - }, - "departure": { - "time": "1763604571" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763604591" - }, - "departure": { - "time": "1763604591" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763604611" - }, - "departure": { - "time": "1763604611" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763604646" - }, - "departure": { - "time": "1763604646" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763604733" - }, - "departure": { - "time": "1763604733" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763604834" - }, - "departure": { - "time": "1763604834" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763604949" - }, - "departure": { - "time": "1763604949" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763604985" - }, - "departure": { - "time": "1763604985" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763605043" - }, - "departure": { - "time": "1763605043" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763605083" - }, - "departure": { - "time": "1763605083" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763605140" - }, - "departure": { - "time": "1763605140" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763605207" - }, - "departure": { - "time": "1763605207" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763605272" - }, - "departure": { - "time": "1763605272" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763605298" - }, - "departure": { - "time": "1763605298" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763605322" - }, - "departure": { - "time": "1763605322" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763605356" - }, - "departure": { - "time": "1763605356" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763605387" - }, - "departure": { - "time": "1763605387" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763605423" - }, - "departure": { - "time": "1763605423" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763605490" - }, - "departure": { - "time": "1763605490" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763605531" - }, - "departure": { - "time": "1763605531" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763605639" - }, - "departure": { - "time": "1763605639" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763605690" - }, - "departure": { - "time": "1763605690" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763605753" - }, - "departure": { - "time": "1763605753" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763605804" - }, - "departure": { - "time": "1763605804" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763605907" - }, - "departure": { - "time": "1763605907" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763605997" - }, - "departure": { - "time": "1763605997" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763606029" - }, - "departure": { - "time": "1763606029" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763606071" - }, - "departure": { - "time": "1763606071" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763606155" - }, - "departure": { - "time": "1763606155" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763606352" - }, - "departure": { - "time": "1763606352" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763606407" - }, - "departure": { - "time": "1763606407" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763606551" - }, - "departure": { - "time": "1763606551" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "22008" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5534874_19009", - "tripUpdate": { - "trip": { - "tripId": "5534874", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 24, - "arrival": { - "time": "1763603091" - }, - "departure": { - "time": "1763603091" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 25, - "arrival": { - "time": "1763603147" - }, - "departure": { - "time": "1763603147" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603240" - }, - "departure": { - "time": "1763603240" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603391" - }, - "departure": { - "time": "1763603391" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603825" - }, - "departure": { - "time": "1763603825" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603991" - }, - "departure": { - "time": "1763603991" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763604118" - }, - "departure": { - "time": "1763604118" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763604173" - }, - "departure": { - "time": "1763604173" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763604225" - }, - "departure": { - "time": "1763604225" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604291" - }, - "departure": { - "time": "1763604291" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604333" - }, - "departure": { - "time": "1763604333" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604388" - }, - "departure": { - "time": "1763604388" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604899" - }, - "departure": { - "time": "1763604899" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604926" - }, - "departure": { - "time": "1763604926" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604958" - }, - "departure": { - "time": "1763604958" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763605011" - }, - "departure": { - "time": "1763605011" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763605059" - }, - "departure": { - "time": "1763605059" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763605125" - }, - "departure": { - "time": "1763605125" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763605211" - }, - "departure": { - "time": "1763605211" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763605241" - }, - "departure": { - "time": "1763605241" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763605313" - }, - "departure": { - "time": "1763605313" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763605354" - }, - "departure": { - "time": "1763605354" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763605425" - }, - "departure": { - "time": "1763605425" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763605611" - }, - "departure": { - "time": "1763605611" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "19009" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5619565_1004B", - "tripUpdate": { - "trip": { - "tripId": "5619565", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 24, - "arrival": { - "time": "1763603156" - }, - "departure": { - "time": "1763603156" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "1004B" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5527363_20005", - "tripUpdate": { - "trip": { - "tripId": "5527363", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 25, - "arrival": { - "time": "1763602893" - }, - "departure": { - "time": "1763602893" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763602935" - }, - "departure": { - "time": "1763602935" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763602970" - }, - "departure": { - "time": "1763602970" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603063" - }, - "departure": { - "time": "1763603063" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603266" - }, - "departure": { - "time": "1763603266" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603322" - }, - "departure": { - "time": "1763603322" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603390" - }, - "departure": { - "time": "1763603390" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "20005" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5529193_21015", - "tripUpdate": { - "trip": { - "tripId": "5529193", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 25, - "arrival": { - "time": "1763602944" - }, - "departure": { - "time": "1763602944" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603010" - }, - "departure": { - "time": "1763603010" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603049" - }, - "departure": { - "time": "1763603049" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603117" - }, - "departure": { - "time": "1763603117" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603188" - }, - "departure": { - "time": "1763603188" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603306" - }, - "departure": { - "time": "1763603306" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603439" - }, - "departure": { - "time": "1763603439" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603461" - }, - "departure": { - "time": "1763603461" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603521" - }, - "departure": { - "time": "1763603521" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603562" - }, - "departure": { - "time": "1763603562" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603606" - }, - "departure": { - "time": "1763603606" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603678" - }, - "departure": { - "time": "1763603678" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603758" - }, - "departure": { - "time": "1763603758" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603792" - }, - "departure": { - "time": "1763603792" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603817" - }, - "departure": { - "time": "1763603817" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603859" - }, - "departure": { - "time": "1763603859" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603904" - }, - "departure": { - "time": "1763603904" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603937" - }, - "departure": { - "time": "1763603937" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604026" - }, - "departure": { - "time": "1763604026" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604026" - }, - "departure": { - "time": "1763604026" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604176" - }, - "departure": { - "time": "1763604176" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604211" - }, - "departure": { - "time": "1763604211" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604246" - }, - "departure": { - "time": "1763604246" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763604271" - }, - "departure": { - "time": "1763604271" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763604363" - }, - "departure": { - "time": "1763604363" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763604400" - }, - "departure": { - "time": "1763604400" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763604441" - }, - "departure": { - "time": "1763604441" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763604481" - }, - "departure": { - "time": "1763604481" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763604566" - }, - "departure": { - "time": "1763604566" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "21015" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5530051_10001", - "tripUpdate": { - "trip": { - "tripId": "5530051", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 25, - "arrival": { - "time": "1763603021" - }, - "departure": { - "time": "1763603021" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603080" - }, - "departure": { - "time": "1763603080" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603140" - }, - "departure": { - "time": "1763603140" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603220" - }, - "departure": { - "time": "1763603220" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603294" - }, - "departure": { - "time": "1763603294" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603322" - }, - "departure": { - "time": "1763603322" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603361" - }, - "departure": { - "time": "1763603361" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603405" - }, - "departure": { - "time": "1763603405" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603440" - }, - "departure": { - "time": "1763603440" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603477" - }, - "departure": { - "time": "1763603477" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603520" - }, - "departure": { - "time": "1763603520" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603593" - }, - "departure": { - "time": "1763603593" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603640" - }, - "departure": { - "time": "1763603640" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603674" - }, - "departure": { - "time": "1763603674" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603749" - }, - "departure": { - "time": "1763603749" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603783" - }, - "departure": { - "time": "1763603783" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603823" - }, - "departure": { - "time": "1763603823" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603899" - }, - "departure": { - "time": "1763603899" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603940" - }, - "departure": { - "time": "1763603940" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603967" - }, - "departure": { - "time": "1763603967" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604002" - }, - "departure": { - "time": "1763604002" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604031" - }, - "departure": { - "time": "1763604031" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604056" - }, - "departure": { - "time": "1763604056" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763604159" - }, - "departure": { - "time": "1763604159" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763604185" - }, - "departure": { - "time": "1763604185" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763604217" - }, - "departure": { - "time": "1763604217" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763604241" - }, - "departure": { - "time": "1763604241" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763604269" - }, - "departure": { - "time": "1763604269" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763604300" - }, - "departure": { - "time": "1763604300" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763604322" - }, - "departure": { - "time": "1763604322" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763604345" - }, - "departure": { - "time": "1763604345" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763604364" - }, - "departure": { - "time": "1763604364" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763604386" - }, - "departure": { - "time": "1763604386" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763604408" - }, - "departure": { - "time": "1763604408" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763604446" - }, - "departure": { - "time": "1763604446" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763604470" - }, - "departure": { - "time": "1763604470" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763604496" - }, - "departure": { - "time": "1763604496" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763604521" - }, - "departure": { - "time": "1763604521" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763604548" - }, - "departure": { - "time": "1763604548" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763604598" - }, - "departure": { - "time": "1763604598" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763604660" - }, - "departure": { - "time": "1763604660" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763604694" - }, - "departure": { - "time": "1763604694" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763604803" - }, - "departure": { - "time": "1763604803" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763604835" - }, - "departure": { - "time": "1763604835" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763604897" - }, - "departure": { - "time": "1763604897" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763605023" - }, - "departure": { - "time": "1763605023" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763605080" - }, - "departure": { - "time": "1763605080" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "10001" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5619751_1102B", - "tripUpdate": { - "trip": { - "tripId": "5619751", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 25, - "arrival": { - "time": "1763603224" - }, - "departure": { - "time": "1763603224" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 26, - "arrival": { - "time": "1763603344" - }, - "departure": { - "time": "1763603344" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603464" - }, - "departure": { - "time": "1763603464" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "1102B" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5526545_19010", - "tripUpdate": { - "trip": { - "tripId": "5526545", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 26, - "arrival": { - "time": "1763603164" - }, - "departure": { - "time": "1763603164" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603232" - }, - "departure": { - "time": "1763603232" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603340" - }, - "departure": { - "time": "1763603340" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603389" - }, - "departure": { - "time": "1763603389" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603419" - }, - "departure": { - "time": "1763603419" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603460" - }, - "departure": { - "time": "1763603460" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603573" - }, - "departure": { - "time": "1763603573" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603685" - }, - "departure": { - "time": "1763603685" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603880" - }, - "departure": { - "time": "1763603880" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "19010" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5527301_23021", - "tripUpdate": { - "trip": { - "tripId": "5527301", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 26, - "arrival": { - "time": "1763602957" - }, - "departure": { - "time": "1763602957" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763602986" - }, - "departure": { - "time": "1763602986" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603010" - }, - "departure": { - "time": "1763603010" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603038" - }, - "departure": { - "time": "1763603038" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603073" - }, - "departure": { - "time": "1763603073" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603114" - }, - "departure": { - "time": "1763603114" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603130" - }, - "departure": { - "time": "1763603130" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603156" - }, - "departure": { - "time": "1763603156" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603177" - }, - "departure": { - "time": "1763603177" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603195" - }, - "departure": { - "time": "1763603195" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603249" - }, - "departure": { - "time": "1763603249" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603294" - }, - "departure": { - "time": "1763603294" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603336" - }, - "departure": { - "time": "1763603336" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603375" - }, - "departure": { - "time": "1763603375" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603429" - }, - "departure": { - "time": "1763603429" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603487" - }, - "departure": { - "time": "1763603487" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603593" - }, - "departure": { - "time": "1763603593" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603611" - }, - "departure": { - "time": "1763603611" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603646" - }, - "departure": { - "time": "1763603646" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603696" - }, - "departure": { - "time": "1763603696" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603749" - }, - "departure": { - "time": "1763603749" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603794" - }, - "departure": { - "time": "1763603794" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603841" - }, - "departure": { - "time": "1763603841" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603883" - }, - "departure": { - "time": "1763603883" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603929" - }, - "departure": { - "time": "1763603929" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603957" - }, - "departure": { - "time": "1763603957" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603985" - }, - "departure": { - "time": "1763603985" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763604027" - }, - "departure": { - "time": "1763604027" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763604056" - }, - "departure": { - "time": "1763604056" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763604294" - }, - "departure": { - "time": "1763604294" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763604367" - }, - "departure": { - "time": "1763604367" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763604473" - }, - "departure": { - "time": "1763604473" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763604503" - }, - "departure": { - "time": "1763604503" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763604557" - }, - "departure": { - "time": "1763604557" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763604596" - }, - "departure": { - "time": "1763604596" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23021" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5534830_17023", - "tripUpdate": { - "trip": { - "tripId": "5534830", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 26, - "arrival": { - "time": "1763603019" - }, - "departure": { - "time": "1763603019" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603111" - }, - "departure": { - "time": "1763603111" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603143" - }, - "departure": { - "time": "1763603143" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603192" - }, - "departure": { - "time": "1763603192" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603289" - }, - "departure": { - "time": "1763603289" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603356" - }, - "departure": { - "time": "1763603356" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603391" - }, - "departure": { - "time": "1763603391" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603422" - }, - "departure": { - "time": "1763603422" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603448" - }, - "departure": { - "time": "1763603448" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603469" - }, - "departure": { - "time": "1763603469" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603482" - }, - "departure": { - "time": "1763603482" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603502" - }, - "departure": { - "time": "1763603502" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603519" - }, - "departure": { - "time": "1763603519" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603538" - }, - "departure": { - "time": "1763603538" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603554" - }, - "departure": { - "time": "1763603554" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603601" - }, - "departure": { - "time": "1763603601" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603619" - }, - "departure": { - "time": "1763603619" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603641" - }, - "departure": { - "time": "1763603641" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603668" - }, - "departure": { - "time": "1763603668" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603687" - }, - "departure": { - "time": "1763603687" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603716" - }, - "departure": { - "time": "1763603716" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603747" - }, - "departure": { - "time": "1763603747" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603772" - }, - "departure": { - "time": "1763603772" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603816" - }, - "departure": { - "time": "1763603816" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603861" - }, - "departure": { - "time": "1763603861" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603905" - }, - "departure": { - "time": "1763603905" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603941" - }, - "departure": { - "time": "1763603941" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763603963" - }, - "departure": { - "time": "1763603963" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763604016" - }, - "departure": { - "time": "1763604016" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763604073" - }, - "departure": { - "time": "1763604073" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763604123" - }, - "departure": { - "time": "1763604123" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763604143" - }, - "departure": { - "time": "1763604143" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763604174" - }, - "departure": { - "time": "1763604174" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763604198" - }, - "departure": { - "time": "1763604198" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763604436" - }, - "departure": { - "time": "1763604436" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17023" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5535057_21076", - "tripUpdate": { - "trip": { - "tripId": "5535057", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 26, - "arrival": { - "time": "1763603700" - }, - "departure": { - "time": "1763603700" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763604120" - }, - "departure": { - "time": "1763604120" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763604360" - }, - "departure": { - "time": "1763604360" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763604683" - }, - "departure": { - "time": "1763604683" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763604840" - }, - "departure": { - "time": "1763604840" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763604930" - }, - "departure": { - "time": "1763604930" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763605140" - }, - "departure": { - "time": "1763605140" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "21076" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5619825_1125B", - "tripUpdate": { - "trip": { - "tripId": "5619825", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 26, - "arrival": { - "time": "1763603118" - }, - "departure": { - "time": "1763603118" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 27, - "arrival": { - "time": "1763603238" - }, - "departure": { - "time": "1763603238" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "1125B" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525655_17013", - "tripUpdate": { - "trip": { - "tripId": "5525655", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 27, - "arrival": { - "time": "1763603067" - }, - "departure": { - "time": "1763603067" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603096" - }, - "departure": { - "time": "1763603096" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603141" - }, - "departure": { - "time": "1763603141" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603154" - }, - "departure": { - "time": "1763603154" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603196" - }, - "departure": { - "time": "1763603196" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603235" - }, - "departure": { - "time": "1763603235" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603266" - }, - "departure": { - "time": "1763603266" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603294" - }, - "departure": { - "time": "1763603294" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603320" - }, - "departure": { - "time": "1763603320" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603342" - }, - "departure": { - "time": "1763603342" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603358" - }, - "departure": { - "time": "1763603358" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603389" - }, - "departure": { - "time": "1763603389" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603409" - }, - "departure": { - "time": "1763603409" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603460" - }, - "departure": { - "time": "1763603460" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603494" - }, - "departure": { - "time": "1763603494" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603527" - }, - "departure": { - "time": "1763603527" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603557" - }, - "departure": { - "time": "1763603557" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603590" - }, - "departure": { - "time": "1763603590" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603620" - }, - "departure": { - "time": "1763603620" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603644" - }, - "departure": { - "time": "1763603644" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603655" - }, - "departure": { - "time": "1763603655" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603678" - }, - "departure": { - "time": "1763603678" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603704" - }, - "departure": { - "time": "1763603704" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603722" - }, - "departure": { - "time": "1763603722" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603739" - }, - "departure": { - "time": "1763603739" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603752" - }, - "departure": { - "time": "1763603752" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763603776" - }, - "departure": { - "time": "1763603776" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763603820" - }, - "departure": { - "time": "1763603820" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763603840" - }, - "departure": { - "time": "1763603840" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763603861" - }, - "departure": { - "time": "1763603861" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763603893" - }, - "departure": { - "time": "1763603893" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763603908" - }, - "departure": { - "time": "1763603908" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763603931" - }, - "departure": { - "time": "1763603931" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763603946" - }, - "departure": { - "time": "1763603946" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763603979" - }, - "departure": { - "time": "1763603979" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763603996" - }, - "departure": { - "time": "1763603996" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763604012" - }, - "departure": { - "time": "1763604012" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763604040" - }, - "departure": { - "time": "1763604040" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763604098" - }, - "departure": { - "time": "1763604098" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763604123" - }, - "departure": { - "time": "1763604123" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763604159" - }, - "departure": { - "time": "1763604159" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763604186" - }, - "departure": { - "time": "1763604186" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763604222" - }, - "departure": { - "time": "1763604222" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763604241" - }, - "departure": { - "time": "1763604241" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763604258" - }, - "departure": { - "time": "1763604258" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763604274" - }, - "departure": { - "time": "1763604274" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763604295" - }, - "departure": { - "time": "1763604295" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763604314" - }, - "departure": { - "time": "1763604314" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763604330" - }, - "departure": { - "time": "1763604330" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763604347" - }, - "departure": { - "time": "1763604347" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763604362" - }, - "departure": { - "time": "1763604362" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763604373" - }, - "departure": { - "time": "1763604373" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763604420" - }, - "departure": { - "time": "1763604420" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763604444" - }, - "departure": { - "time": "1763604444" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763604470" - }, - "departure": { - "time": "1763604470" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763604500" - }, - "departure": { - "time": "1763604500" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 83, - "arrival": { - "time": "1763604528" - }, - "departure": { - "time": "1763604528" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 84, - "arrival": { - "time": "1763604563" - }, - "departure": { - "time": "1763604563" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 85, - "arrival": { - "time": "1763604601" - }, - "departure": { - "time": "1763604601" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 86, - "arrival": { - "time": "1763604631" - }, - "departure": { - "time": "1763604631" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 87, - "arrival": { - "time": "1763604647" - }, - "departure": { - "time": "1763604647" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 88, - "arrival": { - "time": "1763604676" - }, - "departure": { - "time": "1763604676" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 89, - "arrival": { - "time": "1763604701" - }, - "departure": { - "time": "1763604701" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 90, - "arrival": { - "time": "1763604739" - }, - "departure": { - "time": "1763604739" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 91, - "arrival": { - "time": "1763604760" - }, - "departure": { - "time": "1763604760" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 92, - "arrival": { - "time": "1763604812" - }, - "departure": { - "time": "1763604812" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 93, - "arrival": { - "time": "1763604847" - }, - "departure": { - "time": "1763604847" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 94, - "arrival": { - "time": "1763604891" - }, - "departure": { - "time": "1763604891" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 95, - "arrival": { - "time": "1763604917" - }, - "departure": { - "time": "1763604917" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 96, - "arrival": { - "time": "1763604945" - }, - "departure": { - "time": "1763604945" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 97, - "arrival": { - "time": "1763604972" - }, - "departure": { - "time": "1763604972" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 98, - "arrival": { - "time": "1763605003" - }, - "departure": { - "time": "1763605003" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 99, - "arrival": { - "time": "1763605025" - }, - "departure": { - "time": "1763605025" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 100, - "arrival": { - "time": "1763605043" - }, - "departure": { - "time": "1763605043" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 101, - "arrival": { - "time": "1763605080" - }, - "departure": { - "time": "1763605080" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 102, - "arrival": { - "time": "1763605130" - }, - "departure": { - "time": "1763605130" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 103, - "arrival": { - "time": "1763605147" - }, - "departure": { - "time": "1763605147" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 104, - "arrival": { - "time": "1763605176" - }, - "departure": { - "time": "1763605176" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 105, - "arrival": { - "time": "1763605229" - }, - "departure": { - "time": "1763605229" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 106, - "arrival": { - "time": "1763605276" - }, - "departure": { - "time": "1763605276" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 107, - "arrival": { - "time": "1763605319" - }, - "departure": { - "time": "1763605319" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 108, - "arrival": { - "time": "1763605347" - }, - "departure": { - "time": "1763605347" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 109, - "arrival": { - "time": "1763605394" - }, - "departure": { - "time": "1763605394" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 110, - "arrival": { - "time": "1763605560" - }, - "departure": { - "time": "1763605560" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 111, - "arrival": { - "time": "1763605769" - }, - "departure": { - "time": "1763605769" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 112, - "arrival": { - "time": "1763605878" - }, - "departure": { - "time": "1763605878" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 113, - "arrival": { - "time": "1763605920" - }, - "departure": { - "time": "1763605920" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 114, - "arrival": { - "time": "1763605950" - }, - "departure": { - "time": "1763605950" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 115, - "arrival": { - "time": "1763606012" - }, - "departure": { - "time": "1763606012" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 116, - "arrival": { - "time": "1763606041" - }, - "departure": { - "time": "1763606041" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 117, - "arrival": { - "time": "1763606100" - }, - "departure": { - "time": "1763606100" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 118, - "arrival": { - "time": "1763606160" - }, - "departure": { - "time": "1763606160" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 119, - "arrival": { - "time": "1763606231" - }, - "departure": { - "time": "1763606231" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 120, - "arrival": { - "time": "1763606270" - }, - "departure": { - "time": "1763606270" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 121, - "arrival": { - "time": "1763606344" - }, - "departure": { - "time": "1763606344" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 122, - "arrival": { - "time": "1763606410" - }, - "departure": { - "time": "1763606410" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 123, - "arrival": { - "time": "1763606448" - }, - "departure": { - "time": "1763606448" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 124, - "arrival": { - "time": "1763606488" - }, - "departure": { - "time": "1763606488" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 125, - "arrival": { - "time": "1763606520" - }, - "departure": { - "time": "1763606520" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 126, - "arrival": { - "time": "1763606643" - }, - "departure": { - "time": "1763606643" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 127, - "arrival": { - "time": "1763606755" - }, - "departure": { - "time": "1763606755" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 128, - "arrival": { - "time": "1763607131" - }, - "departure": { - "time": "1763607131" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 129, - "arrival": { - "time": "1763607184" - }, - "departure": { - "time": "1763607184" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 130, - "arrival": { - "time": "1763607241" - }, - "departure": { - "time": "1763607241" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 131, - "arrival": { - "time": "1763607374" - }, - "departure": { - "time": "1763607374" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 132, - "arrival": { - "time": "1763607465" - }, - "departure": { - "time": "1763607465" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 133, - "arrival": { - "time": "1763607720" - }, - "departure": { - "time": "1763607720" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 134, - "arrival": { - "time": "1763607884" - }, - "departure": { - "time": "1763607884" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 135, - "arrival": { - "time": "1763607947" - }, - "departure": { - "time": "1763607947" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 136, - "arrival": { - "time": "1763607982" - }, - "departure": { - "time": "1763607982" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 137, - "arrival": { - "time": "1763608043" - }, - "departure": { - "time": "1763608043" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 138, - "arrival": { - "time": "1763608086" - }, - "departure": { - "time": "1763608086" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 139, - "arrival": { - "time": "1763608140" - }, - "departure": { - "time": "1763608140" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 140, - "arrival": { - "time": "1763608192" - }, - "departure": { - "time": "1763608192" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 141, - "arrival": { - "time": "1763608272" - }, - "departure": { - "time": "1763608272" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 142, - "arrival": { - "time": "1763608352" - }, - "departure": { - "time": "1763608352" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 143, - "arrival": { - "time": "1763608400" - }, - "departure": { - "time": "1763608400" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 144, - "arrival": { - "time": "1763608440" - }, - "departure": { - "time": "1763608440" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 145, - "arrival": { - "time": "1763608461" - }, - "departure": { - "time": "1763608461" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 146, - "arrival": { - "time": "1763608507" - }, - "departure": { - "time": "1763608507" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 147, - "arrival": { - "time": "1763608538" - }, - "departure": { - "time": "1763608538" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 148, - "arrival": { - "time": "1763608554" - }, - "departure": { - "time": "1763608554" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 149, - "arrival": { - "time": "1763608575" - }, - "departure": { - "time": "1763608575" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 150, - "arrival": { - "time": "1763608615" - }, - "departure": { - "time": "1763608615" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 151, - "arrival": { - "time": "1763608680" - }, - "departure": { - "time": "1763608680" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 152, - "arrival": { - "time": "1763608680" - }, - "departure": { - "time": "1763608680" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 153, - "arrival": { - "time": "1763608980" - }, - "departure": { - "time": "1763608980" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 154, - "arrival": { - "time": "1763609073" - }, - "departure": { - "time": "1763609073" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 155, - "arrival": { - "time": "1763609148" - }, - "departure": { - "time": "1763609148" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 156, - "arrival": { - "time": "1763609295" - }, - "departure": { - "time": "1763609295" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 157, - "arrival": { - "time": "1763609387" - }, - "departure": { - "time": "1763609387" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 158, - "arrival": { - "time": "1763609458" - }, - "departure": { - "time": "1763609458" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 159, - "arrival": { - "time": "1763609520" - }, - "departure": { - "time": "1763609520" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 160, - "arrival": { - "time": "1763609668" - }, - "departure": { - "time": "1763609668" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 161, - "arrival": { - "time": "1763609740" - }, - "departure": { - "time": "1763609740" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 162, - "arrival": { - "time": "1763609816" - }, - "departure": { - "time": "1763609816" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 163, - "arrival": { - "time": "1763609860" - }, - "departure": { - "time": "1763609860" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 164, - "arrival": { - "time": "1763609901" - }, - "departure": { - "time": "1763609901" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 165, - "arrival": { - "time": "1763609942" - }, - "departure": { - "time": "1763609942" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 166, - "arrival": { - "time": "1763609985" - }, - "departure": { - "time": "1763609985" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 167, - "arrival": { - "time": "1763610027" - }, - "departure": { - "time": "1763610027" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 168, - "arrival": { - "time": "1763610070" - }, - "departure": { - "time": "1763610070" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 169, - "arrival": { - "time": "1763610120" - }, - "departure": { - "time": "1763610120" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 170, - "arrival": { - "time": "1763610161" - }, - "departure": { - "time": "1763610161" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 171, - "arrival": { - "time": "1763610240" - }, - "departure": { - "time": "1763610240" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 172, - "arrival": { - "time": "1763610317" - }, - "departure": { - "time": "1763610317" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 173, - "arrival": { - "time": "1763610384" - }, - "departure": { - "time": "1763610384" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 174, - "arrival": { - "time": "1763610438" - }, - "departure": { - "time": "1763610438" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 175, - "arrival": { - "time": "1763610600" - }, - "departure": { - "time": "1763610600" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 176, - "arrival": { - "time": "1763610829" - }, - "departure": { - "time": "1763610829" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 177, - "arrival": { - "time": "1763610905" - }, - "departure": { - "time": "1763610905" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 178, - "arrival": { - "time": "1763611200" - }, - "departure": { - "time": "1763611200" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17013" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5534625_18015", - "tripUpdate": { - "trip": { - "tripId": "5534625", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 27, - "arrival": { - "time": "1763603017" - }, - "departure": { - "time": "1763603017" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763603055" - }, - "departure": { - "time": "1763603055" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763603124" - }, - "departure": { - "time": "1763603124" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603209" - }, - "departure": { - "time": "1763603209" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603324" - }, - "departure": { - "time": "1763603324" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603630" - }, - "departure": { - "time": "1763603630" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603781" - }, - "departure": { - "time": "1763603781" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603828" - }, - "departure": { - "time": "1763603828" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603897" - }, - "departure": { - "time": "1763603897" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603924" - }, - "departure": { - "time": "1763603924" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604069" - }, - "departure": { - "time": "1763604069" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604157" - }, - "departure": { - "time": "1763604157" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604224" - }, - "departure": { - "time": "1763604224" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604288" - }, - "departure": { - "time": "1763604288" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604330" - }, - "departure": { - "time": "1763604330" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604384" - }, - "departure": { - "time": "1763604384" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604404" - }, - "departure": { - "time": "1763604404" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604446" - }, - "departure": { - "time": "1763604446" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604464" - }, - "departure": { - "time": "1763604464" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604516" - }, - "departure": { - "time": "1763604516" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604544" - }, - "departure": { - "time": "1763604544" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763604944" - }, - "departure": { - "time": "1763604944" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "18015" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5535080_19205", - "tripUpdate": { - "trip": { - "tripId": "5535080", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 27, - "arrival": { - "time": "1763602008" - }, - "departure": { - "time": "1763602008" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 28, - "arrival": { - "time": "1763602070" - }, - "departure": { - "time": "1763602070" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763602194" - }, - "departure": { - "time": "1763602194" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763602246" - }, - "departure": { - "time": "1763602246" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "19205" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5534857_17022", - "tripUpdate": { - "trip": { - "tripId": "5534857", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 28, - "arrival": { - "time": "1763601808" - }, - "departure": { - "time": "1763601808" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763601840" - }, - "departure": { - "time": "1763601840" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763602500" - }, - "departure": { - "time": "1763602500" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763602606" - }, - "departure": { - "time": "1763602606" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763602651" - }, - "departure": { - "time": "1763602651" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763602688" - }, - "departure": { - "time": "1763602688" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763602789" - }, - "departure": { - "time": "1763602789" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763602840" - }, - "departure": { - "time": "1763602840" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763602915" - }, - "departure": { - "time": "1763602915" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763602995" - }, - "departure": { - "time": "1763602995" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603111" - }, - "departure": { - "time": "1763603111" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603236" - }, - "departure": { - "time": "1763603236" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603280" - }, - "departure": { - "time": "1763603280" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603322" - }, - "departure": { - "time": "1763603322" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603407" - }, - "departure": { - "time": "1763603407" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603470" - }, - "departure": { - "time": "1763603470" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603517" - }, - "departure": { - "time": "1763603517" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603700" - }, - "departure": { - "time": "1763603700" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17022" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5718384_09042", - "tripUpdate": { - "trip": { - "tripId": "5718384", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 28, - "arrival": { - "time": "1763602951" - }, - "departure": { - "time": "1763602951" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 29, - "arrival": { - "time": "1763602979" - }, - "departure": { - "time": "1763602979" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603010" - }, - "departure": { - "time": "1763603010" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603044" - }, - "departure": { - "time": "1763603044" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603100" - }, - "departure": { - "time": "1763603100" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603123" - }, - "departure": { - "time": "1763603123" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603144" - }, - "departure": { - "time": "1763603144" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603191" - }, - "departure": { - "time": "1763603191" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603230" - }, - "departure": { - "time": "1763603230" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603267" - }, - "departure": { - "time": "1763603267" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603320" - }, - "departure": { - "time": "1763603320" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603368" - }, - "departure": { - "time": "1763603368" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603409" - }, - "departure": { - "time": "1763603409" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603452" - }, - "departure": { - "time": "1763603452" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603551" - }, - "departure": { - "time": "1763603551" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603601" - }, - "departure": { - "time": "1763603601" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603667" - }, - "departure": { - "time": "1763603667" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603720" - }, - "departure": { - "time": "1763603720" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603787" - }, - "departure": { - "time": "1763603787" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603834" - }, - "departure": { - "time": "1763603834" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603869" - }, - "departure": { - "time": "1763603869" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603971" - }, - "departure": { - "time": "1763603971" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "09042" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525079_18013", - "tripUpdate": { - "trip": { - "tripId": "5525079", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 29, - "arrival": { - "time": "1763602927" - }, - "departure": { - "time": "1763602927" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763602978" - }, - "departure": { - "time": "1763602978" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603005" - }, - "departure": { - "time": "1763603005" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603043" - }, - "departure": { - "time": "1763603043" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603090" - }, - "departure": { - "time": "1763603090" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603137" - }, - "departure": { - "time": "1763603137" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603181" - }, - "departure": { - "time": "1763603181" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603219" - }, - "departure": { - "time": "1763603219" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603258" - }, - "departure": { - "time": "1763603258" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603330" - }, - "departure": { - "time": "1763603330" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603377" - }, - "departure": { - "time": "1763603377" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603441" - }, - "departure": { - "time": "1763603441" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603457" - }, - "departure": { - "time": "1763603457" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603523" - }, - "departure": { - "time": "1763603523" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603569" - }, - "departure": { - "time": "1763603569" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603582" - }, - "departure": { - "time": "1763603582" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603631" - }, - "departure": { - "time": "1763603631" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603672" - }, - "departure": { - "time": "1763603672" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603703" - }, - "departure": { - "time": "1763603703" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603762" - }, - "departure": { - "time": "1763603762" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603800" - }, - "departure": { - "time": "1763603800" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603857" - }, - "departure": { - "time": "1763603857" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603918" - }, - "departure": { - "time": "1763603918" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763604003" - }, - "departure": { - "time": "1763604003" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763604084" - }, - "departure": { - "time": "1763604084" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763604149" - }, - "departure": { - "time": "1763604149" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763604202" - }, - "departure": { - "time": "1763604202" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763604242" - }, - "departure": { - "time": "1763604242" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763604303" - }, - "departure": { - "time": "1763604303" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763604342" - }, - "departure": { - "time": "1763604342" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763604403" - }, - "departure": { - "time": "1763604403" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763604438" - }, - "departure": { - "time": "1763604438" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763604490" - }, - "departure": { - "time": "1763604490" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763604543" - }, - "departure": { - "time": "1763604543" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763604586" - }, - "departure": { - "time": "1763604586" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763604638" - }, - "departure": { - "time": "1763604638" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763604665" - }, - "departure": { - "time": "1763604665" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763604704" - }, - "departure": { - "time": "1763604704" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763604742" - }, - "departure": { - "time": "1763604742" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763604782" - }, - "departure": { - "time": "1763604782" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763604843" - }, - "departure": { - "time": "1763604843" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763604906" - }, - "departure": { - "time": "1763604906" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763604962" - }, - "departure": { - "time": "1763604962" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763605052" - }, - "departure": { - "time": "1763605052" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763605203" - }, - "departure": { - "time": "1763605203" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "18013" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5534665_21083", - "tripUpdate": { - "trip": { - "tripId": "5534665", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 29, - "arrival": { - "time": "1763603160" - }, - "departure": { - "time": "1763603160" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603460" - }, - "departure": { - "time": "1763603460" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603632" - }, - "departure": { - "time": "1763603632" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603700" - }, - "departure": { - "time": "1763603700" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604180" - }, - "departure": { - "time": "1763604180" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604382" - }, - "departure": { - "time": "1763604382" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604444" - }, - "departure": { - "time": "1763604444" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604555" - }, - "departure": { - "time": "1763604555" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604715" - }, - "departure": { - "time": "1763604715" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604746" - }, - "departure": { - "time": "1763604746" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604793" - }, - "departure": { - "time": "1763604793" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763604840" - }, - "departure": { - "time": "1763604840" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604859" - }, - "departure": { - "time": "1763604859" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604881" - }, - "departure": { - "time": "1763604881" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604906" - }, - "departure": { - "time": "1763604906" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604947" - }, - "departure": { - "time": "1763604947" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604971" - }, - "departure": { - "time": "1763604971" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604998" - }, - "departure": { - "time": "1763604998" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763605021" - }, - "departure": { - "time": "1763605021" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763605048" - }, - "departure": { - "time": "1763605048" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763605078" - }, - "departure": { - "time": "1763605078" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763605092" - }, - "departure": { - "time": "1763605092" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763605114" - }, - "departure": { - "time": "1763605114" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763605150" - }, - "departure": { - "time": "1763605150" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763605181" - }, - "departure": { - "time": "1763605181" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763605320" - }, - "departure": { - "time": "1763605320" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763605464" - }, - "departure": { - "time": "1763605464" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763605500" - }, - "departure": { - "time": "1763605500" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763605552" - }, - "departure": { - "time": "1763605552" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763605640" - }, - "departure": { - "time": "1763605640" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763605712" - }, - "departure": { - "time": "1763605712" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763605740" - }, - "departure": { - "time": "1763605740" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763605789" - }, - "departure": { - "time": "1763605789" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763605817" - }, - "departure": { - "time": "1763605817" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763605836" - }, - "departure": { - "time": "1763605836" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763605849" - }, - "departure": { - "time": "1763605849" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763605867" - }, - "departure": { - "time": "1763605867" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763605888" - }, - "departure": { - "time": "1763605888" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763605905" - }, - "departure": { - "time": "1763605905" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763605935" - }, - "departure": { - "time": "1763605935" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763605961" - }, - "departure": { - "time": "1763605961" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763605987" - }, - "departure": { - "time": "1763605987" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763606015" - }, - "departure": { - "time": "1763606015" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763606054" - }, - "departure": { - "time": "1763606054" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763606095" - }, - "departure": { - "time": "1763606095" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763606120" - }, - "departure": { - "time": "1763606120" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763606134" - }, - "departure": { - "time": "1763606134" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763606157" - }, - "departure": { - "time": "1763606157" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763606184" - }, - "departure": { - "time": "1763606184" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763606222" - }, - "departure": { - "time": "1763606222" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763606236" - }, - "departure": { - "time": "1763606236" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763606280" - }, - "departure": { - "time": "1763606280" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763606313" - }, - "departure": { - "time": "1763606313" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763606359" - }, - "departure": { - "time": "1763606359" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 83, - "arrival": { - "time": "1763606382" - }, - "departure": { - "time": "1763606382" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 84, - "arrival": { - "time": "1763606416" - }, - "departure": { - "time": "1763606416" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 85, - "arrival": { - "time": "1763606434" - }, - "departure": { - "time": "1763606434" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 86, - "arrival": { - "time": "1763606473" - }, - "departure": { - "time": "1763606473" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 87, - "arrival": { - "time": "1763606512" - }, - "departure": { - "time": "1763606512" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 88, - "arrival": { - "time": "1763606558" - }, - "departure": { - "time": "1763606558" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 89, - "arrival": { - "time": "1763606584" - }, - "departure": { - "time": "1763606584" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 90, - "arrival": { - "time": "1763606600" - }, - "departure": { - "time": "1763606600" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 91, - "arrival": { - "time": "1763606619" - }, - "departure": { - "time": "1763606619" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 92, - "arrival": { - "time": "1763606638" - }, - "departure": { - "time": "1763606638" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 93, - "arrival": { - "time": "1763606675" - }, - "departure": { - "time": "1763606675" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 94, - "arrival": { - "time": "1763606709" - }, - "departure": { - "time": "1763606709" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 95, - "arrival": { - "time": "1763606744" - }, - "departure": { - "time": "1763606744" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 96, - "arrival": { - "time": "1763606780" - }, - "departure": { - "time": "1763606780" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 97, - "arrival": { - "time": "1763606807" - }, - "departure": { - "time": "1763606807" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 98, - "arrival": { - "time": "1763606832" - }, - "departure": { - "time": "1763606832" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 99, - "arrival": { - "time": "1763606880" - }, - "departure": { - "time": "1763606880" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 100, - "arrival": { - "time": "1763606898" - }, - "departure": { - "time": "1763606898" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 101, - "arrival": { - "time": "1763606927" - }, - "departure": { - "time": "1763606927" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 102, - "arrival": { - "time": "1763606957" - }, - "departure": { - "time": "1763606957" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 103, - "arrival": { - "time": "1763606974" - }, - "departure": { - "time": "1763606974" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 104, - "arrival": { - "time": "1763607000" - }, - "departure": { - "time": "1763607000" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 105, - "arrival": { - "time": "1763607023" - }, - "departure": { - "time": "1763607023" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 106, - "arrival": { - "time": "1763607065" - }, - "departure": { - "time": "1763607065" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 107, - "arrival": { - "time": "1763607095" - }, - "departure": { - "time": "1763607095" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 108, - "arrival": { - "time": "1763607118" - }, - "departure": { - "time": "1763607118" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 109, - "arrival": { - "time": "1763607163" - }, - "departure": { - "time": "1763607163" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 110, - "arrival": { - "time": "1763607190" - }, - "departure": { - "time": "1763607190" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 111, - "arrival": { - "time": "1763607230" - }, - "departure": { - "time": "1763607230" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 112, - "arrival": { - "time": "1763607246" - }, - "departure": { - "time": "1763607246" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 113, - "arrival": { - "time": "1763607300" - }, - "departure": { - "time": "1763607300" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 114, - "arrival": { - "time": "1763607333" - }, - "departure": { - "time": "1763607333" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 115, - "arrival": { - "time": "1763607342" - }, - "departure": { - "time": "1763607342" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 116, - "arrival": { - "time": "1763607362" - }, - "departure": { - "time": "1763607362" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 117, - "arrival": { - "time": "1763607379" - }, - "departure": { - "time": "1763607379" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 118, - "arrival": { - "time": "1763607394" - }, - "departure": { - "time": "1763607394" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 119, - "arrival": { - "time": "1763607415" - }, - "departure": { - "time": "1763607415" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 120, - "arrival": { - "time": "1763607432" - }, - "departure": { - "time": "1763607432" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 121, - "arrival": { - "time": "1763607442" - }, - "departure": { - "time": "1763607442" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 122, - "arrival": { - "time": "1763607449" - }, - "departure": { - "time": "1763607449" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 123, - "arrival": { - "time": "1763607456" - }, - "departure": { - "time": "1763607456" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 124, - "arrival": { - "time": "1763607489" - }, - "departure": { - "time": "1763607489" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 125, - "arrival": { - "time": "1763607498" - }, - "departure": { - "time": "1763607498" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 126, - "arrival": { - "time": "1763607516" - }, - "departure": { - "time": "1763607516" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 127, - "arrival": { - "time": "1763607749" - }, - "departure": { - "time": "1763607749" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 128, - "arrival": { - "time": "1763607806" - }, - "departure": { - "time": "1763607806" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 129, - "arrival": { - "time": "1763607876" - }, - "departure": { - "time": "1763607876" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 130, - "arrival": { - "time": "1763607900" - }, - "departure": { - "time": "1763607900" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 131, - "arrival": { - "time": "1763607929" - }, - "departure": { - "time": "1763607929" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 132, - "arrival": { - "time": "1763607955" - }, - "departure": { - "time": "1763607955" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 133, - "arrival": { - "time": "1763607980" - }, - "departure": { - "time": "1763607980" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 134, - "arrival": { - "time": "1763608006" - }, - "departure": { - "time": "1763608006" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 135, - "arrival": { - "time": "1763608031" - }, - "departure": { - "time": "1763608031" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 136, - "arrival": { - "time": "1763608063" - }, - "departure": { - "time": "1763608063" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 137, - "arrival": { - "time": "1763608123" - }, - "departure": { - "time": "1763608123" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 138, - "arrival": { - "time": "1763608152" - }, - "departure": { - "time": "1763608152" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 139, - "arrival": { - "time": "1763608200" - }, - "departure": { - "time": "1763608200" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 140, - "arrival": { - "time": "1763608282" - }, - "departure": { - "time": "1763608282" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 141, - "arrival": { - "time": "1763608357" - }, - "departure": { - "time": "1763608357" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 142, - "arrival": { - "time": "1763608440" - }, - "departure": { - "time": "1763608440" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 143, - "arrival": { - "time": "1763608486" - }, - "departure": { - "time": "1763608486" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 144, - "arrival": { - "time": "1763608620" - }, - "departure": { - "time": "1763608620" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 145, - "arrival": { - "time": "1763608722" - }, - "departure": { - "time": "1763608722" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 146, - "arrival": { - "time": "1763608813" - }, - "departure": { - "time": "1763608813" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 147, - "arrival": { - "time": "1763608883" - }, - "departure": { - "time": "1763608883" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 148, - "arrival": { - "time": "1763609028" - }, - "departure": { - "time": "1763609028" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 149, - "arrival": { - "time": "1763609202" - }, - "departure": { - "time": "1763609202" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 150, - "arrival": { - "time": "1763609397" - }, - "departure": { - "time": "1763609397" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 151, - "arrival": { - "time": "1763609460" - }, - "departure": { - "time": "1763609460" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 152, - "arrival": { - "time": "1763609554" - }, - "departure": { - "time": "1763609554" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 153, - "arrival": { - "time": "1763609658" - }, - "departure": { - "time": "1763609658" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 154, - "arrival": { - "time": "1763609723" - }, - "departure": { - "time": "1763609723" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 155, - "arrival": { - "time": "1763609800" - }, - "departure": { - "time": "1763609800" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 156, - "arrival": { - "time": "1763609845" - }, - "departure": { - "time": "1763609845" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 157, - "arrival": { - "time": "1763610027" - }, - "departure": { - "time": "1763610027" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 158, - "arrival": { - "time": "1763610060" - }, - "departure": { - "time": "1763610060" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 159, - "arrival": { - "time": "1763610075" - }, - "departure": { - "time": "1763610075" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 160, - "arrival": { - "time": "1763610122" - }, - "departure": { - "time": "1763610122" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 161, - "arrival": { - "time": "1763610149" - }, - "departure": { - "time": "1763610149" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 162, - "arrival": { - "time": "1763610165" - }, - "departure": { - "time": "1763610165" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 163, - "arrival": { - "time": "1763610180" - }, - "departure": { - "time": "1763610180" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 164, - "arrival": { - "time": "1763610212" - }, - "departure": { - "time": "1763610212" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 165, - "arrival": { - "time": "1763610300" - }, - "departure": { - "time": "1763610300" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "21083" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5534835_23046", - "tripUpdate": { - "trip": { - "tripId": "5534835", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 29, - "arrival": { - "time": "1763603699" - }, - "departure": { - "time": "1763603699" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 30, - "arrival": { - "time": "1763603717" - }, - "departure": { - "time": "1763603717" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603745" - }, - "departure": { - "time": "1763603745" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603774" - }, - "departure": { - "time": "1763603774" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763604479" - }, - "departure": { - "time": "1763604479" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763604759" - }, - "departure": { - "time": "1763604759" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763604839" - }, - "departure": { - "time": "1763604839" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763604879" - }, - "departure": { - "time": "1763604879" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763604925" - }, - "departure": { - "time": "1763604925" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763604967" - }, - "departure": { - "time": "1763604967" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763604985" - }, - "departure": { - "time": "1763604985" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763605018" - }, - "departure": { - "time": "1763605018" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763605061" - }, - "departure": { - "time": "1763605061" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763605095" - }, - "departure": { - "time": "1763605095" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763605139" - }, - "departure": { - "time": "1763605139" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763605192" - }, - "departure": { - "time": "1763605192" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763605264" - }, - "departure": { - "time": "1763605264" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763605319" - }, - "departure": { - "time": "1763605319" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763605392" - }, - "departure": { - "time": "1763605392" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763605437" - }, - "departure": { - "time": "1763605437" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763605501" - }, - "departure": { - "time": "1763605501" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763605559" - }, - "departure": { - "time": "1763605559" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23046" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5524194_13004", - "tripUpdate": { - "trip": { - "tripId": "5524194", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 30, - "arrival": { - "time": "1763603166" - }, - "departure": { - "time": "1763603166" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603227" - }, - "departure": { - "time": "1763603227" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603304" - }, - "departure": { - "time": "1763603304" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603347" - }, - "departure": { - "time": "1763603347" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603391" - }, - "departure": { - "time": "1763603391" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603429" - }, - "departure": { - "time": "1763603429" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603518" - }, - "departure": { - "time": "1763603518" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603587" - }, - "departure": { - "time": "1763603587" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603677" - }, - "departure": { - "time": "1763603677" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603782" - }, - "departure": { - "time": "1763603782" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603877" - }, - "departure": { - "time": "1763603877" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603965" - }, - "departure": { - "time": "1763603965" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604073" - }, - "departure": { - "time": "1763604073" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604141" - }, - "departure": { - "time": "1763604141" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604173" - }, - "departure": { - "time": "1763604173" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604307" - }, - "departure": { - "time": "1763604307" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "13004" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525427_24008", - "tripUpdate": { - "trip": { - "tripId": "5525427", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 30, - "arrival": { - "time": "1763603018" - }, - "departure": { - "time": "1763603018" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603043" - }, - "departure": { - "time": "1763603043" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603075" - }, - "departure": { - "time": "1763603075" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603093" - }, - "departure": { - "time": "1763603093" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603119" - }, - "departure": { - "time": "1763603119" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603162" - }, - "departure": { - "time": "1763603162" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603220" - }, - "departure": { - "time": "1763603220" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603277" - }, - "departure": { - "time": "1763603277" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603310" - }, - "departure": { - "time": "1763603310" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603352" - }, - "departure": { - "time": "1763603352" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603393" - }, - "departure": { - "time": "1763603393" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603431" - }, - "departure": { - "time": "1763603431" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603483" - }, - "departure": { - "time": "1763603483" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603520" - }, - "departure": { - "time": "1763603520" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603608" - }, - "departure": { - "time": "1763603608" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603668" - }, - "departure": { - "time": "1763603668" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603734" - }, - "departure": { - "time": "1763603734" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603761" - }, - "departure": { - "time": "1763603761" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603783" - }, - "departure": { - "time": "1763603783" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603817" - }, - "departure": { - "time": "1763603817" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603857" - }, - "departure": { - "time": "1763603857" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603888" - }, - "departure": { - "time": "1763603888" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603941" - }, - "departure": { - "time": "1763603941" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763604000" - }, - "departure": { - "time": "1763604000" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763604055" - }, - "departure": { - "time": "1763604055" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763604085" - }, - "departure": { - "time": "1763604085" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763604111" - }, - "departure": { - "time": "1763604111" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763604170" - }, - "departure": { - "time": "1763604170" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763604193" - }, - "departure": { - "time": "1763604193" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763604240" - }, - "departure": { - "time": "1763604240" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763604283" - }, - "departure": { - "time": "1763604283" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763604330" - }, - "departure": { - "time": "1763604330" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763604367" - }, - "departure": { - "time": "1763604367" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763604407" - }, - "departure": { - "time": "1763604407" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763604441" - }, - "departure": { - "time": "1763604441" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763604480" - }, - "departure": { - "time": "1763604480" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763604512" - }, - "departure": { - "time": "1763604512" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763604559" - }, - "departure": { - "time": "1763604559" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763604577" - }, - "departure": { - "time": "1763604577" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763604683" - }, - "departure": { - "time": "1763604683" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763604730" - }, - "departure": { - "time": "1763604730" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763604788" - }, - "departure": { - "time": "1763604788" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763604814" - }, - "departure": { - "time": "1763604814" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763604851" - }, - "departure": { - "time": "1763604851" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763604900" - }, - "departure": { - "time": "1763604900" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763604946" - }, - "departure": { - "time": "1763604946" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763604984" - }, - "departure": { - "time": "1763604984" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763605003" - }, - "departure": { - "time": "1763605003" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763605027" - }, - "departure": { - "time": "1763605027" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763605049" - }, - "departure": { - "time": "1763605049" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763605076" - }, - "departure": { - "time": "1763605076" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763605114" - }, - "departure": { - "time": "1763605114" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763605145" - }, - "departure": { - "time": "1763605145" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 83, - "arrival": { - "time": "1763605169" - }, - "departure": { - "time": "1763605169" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 84, - "arrival": { - "time": "1763605195" - }, - "departure": { - "time": "1763605195" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 85, - "arrival": { - "time": "1763605209" - }, - "departure": { - "time": "1763605209" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 86, - "arrival": { - "time": "1763605246" - }, - "departure": { - "time": "1763605246" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 87, - "arrival": { - "time": "1763605272" - }, - "departure": { - "time": "1763605272" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 88, - "arrival": { - "time": "1763605294" - }, - "departure": { - "time": "1763605294" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 89, - "arrival": { - "time": "1763605329" - }, - "departure": { - "time": "1763605329" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 90, - "arrival": { - "time": "1763605384" - }, - "departure": { - "time": "1763605384" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 91, - "arrival": { - "time": "1763605420" - }, - "departure": { - "time": "1763605420" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 92, - "arrival": { - "time": "1763605441" - }, - "departure": { - "time": "1763605441" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 93, - "arrival": { - "time": "1763605500" - }, - "departure": { - "time": "1763605500" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "24008" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5528507_20051", - "tripUpdate": { - "trip": { - "tripId": "5528507", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 30, - "arrival": { - "time": "1763602980" - }, - "departure": { - "time": "1763602980" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603010" - }, - "departure": { - "time": "1763603010" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603063" - }, - "departure": { - "time": "1763603063" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603138" - }, - "departure": { - "time": "1763603138" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603165" - }, - "departure": { - "time": "1763603165" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603188" - }, - "departure": { - "time": "1763603188" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603312" - }, - "departure": { - "time": "1763603312" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603357" - }, - "departure": { - "time": "1763603357" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603400" - }, - "departure": { - "time": "1763603400" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603430" - }, - "departure": { - "time": "1763603430" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603475" - }, - "departure": { - "time": "1763603475" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603497" - }, - "departure": { - "time": "1763603497" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603530" - }, - "departure": { - "time": "1763603530" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603566" - }, - "departure": { - "time": "1763603566" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603606" - }, - "departure": { - "time": "1763603606" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603640" - }, - "departure": { - "time": "1763603640" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603684" - }, - "departure": { - "time": "1763603684" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603731" - }, - "departure": { - "time": "1763603731" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603761" - }, - "departure": { - "time": "1763603761" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603794" - }, - "departure": { - "time": "1763603794" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603829" - }, - "departure": { - "time": "1763603829" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603880" - }, - "departure": { - "time": "1763603880" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603920" - }, - "departure": { - "time": "1763603920" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763604030" - }, - "departure": { - "time": "1763604030" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763604058" - }, - "departure": { - "time": "1763604058" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763604106" - }, - "departure": { - "time": "1763604106" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763604159" - }, - "departure": { - "time": "1763604159" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763604240" - }, - "departure": { - "time": "1763604240" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763604289" - }, - "departure": { - "time": "1763604289" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763604381" - }, - "departure": { - "time": "1763604381" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763604413" - }, - "departure": { - "time": "1763604413" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763604425" - }, - "departure": { - "time": "1763604425" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763604455" - }, - "departure": { - "time": "1763604455" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763604480" - }, - "departure": { - "time": "1763604480" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763604519" - }, - "departure": { - "time": "1763604519" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763604540" - }, - "departure": { - "time": "1763604540" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763604572" - }, - "departure": { - "time": "1763604572" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763604598" - }, - "departure": { - "time": "1763604598" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763604640" - }, - "departure": { - "time": "1763604640" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763604670" - }, - "departure": { - "time": "1763604670" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763604700" - }, - "departure": { - "time": "1763604700" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763604738" - }, - "departure": { - "time": "1763604738" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763604767" - }, - "departure": { - "time": "1763604767" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763604802" - }, - "departure": { - "time": "1763604802" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763604826" - }, - "departure": { - "time": "1763604826" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763604880" - }, - "departure": { - "time": "1763604880" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763604925" - }, - "departure": { - "time": "1763604925" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763604960" - }, - "departure": { - "time": "1763604960" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763604973" - }, - "departure": { - "time": "1763604973" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763604997" - }, - "departure": { - "time": "1763604997" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763605056" - }, - "departure": { - "time": "1763605056" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763605075" - }, - "departure": { - "time": "1763605075" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763605101" - }, - "departure": { - "time": "1763605101" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 83, - "arrival": { - "time": "1763605116" - }, - "departure": { - "time": "1763605116" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 84, - "arrival": { - "time": "1763605163" - }, - "departure": { - "time": "1763605163" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 85, - "arrival": { - "time": "1763605201" - }, - "departure": { - "time": "1763605201" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 86, - "arrival": { - "time": "1763605230" - }, - "departure": { - "time": "1763605230" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 87, - "arrival": { - "time": "1763605273" - }, - "departure": { - "time": "1763605273" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 88, - "arrival": { - "time": "1763605297" - }, - "departure": { - "time": "1763605297" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 89, - "arrival": { - "time": "1763605318" - }, - "departure": { - "time": "1763605318" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 90, - "arrival": { - "time": "1763605345" - }, - "departure": { - "time": "1763605345" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 91, - "arrival": { - "time": "1763605361" - }, - "departure": { - "time": "1763605361" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 92, - "arrival": { - "time": "1763605380" - }, - "departure": { - "time": "1763605380" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 93, - "arrival": { - "time": "1763605733" - }, - "departure": { - "time": "1763605733" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 94, - "arrival": { - "time": "1763605817" - }, - "departure": { - "time": "1763605817" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 95, - "arrival": { - "time": "1763605980" - }, - "departure": { - "time": "1763605980" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "20051" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5535056_21080", - "tripUpdate": { - "trip": { - "tripId": "5535056", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 30, - "arrival": { - "time": "1763603280" - }, - "departure": { - "time": "1763603280" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 31, - "arrival": { - "time": "1763603370" - }, - "departure": { - "time": "1763603370" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603580" - }, - "departure": { - "time": "1763603580" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "21080" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5618029_11003", - "tripUpdate": { - "trip": { - "tripId": "5618029", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 30, - "arrival": { - "time": "1763603040" - }, - "departure": { - "time": "1763603040" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "11003" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525687_17012", - "tripUpdate": { - "trip": { - "tripId": "5525687", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 31, - "arrival": { - "time": "1763603181" - }, - "departure": { - "time": "1763603181" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603217" - }, - "departure": { - "time": "1763603217" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603249" - }, - "departure": { - "time": "1763603249" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603274" - }, - "departure": { - "time": "1763603274" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603299" - }, - "departure": { - "time": "1763603299" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603328" - }, - "departure": { - "time": "1763603328" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603394" - }, - "departure": { - "time": "1763603394" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603421" - }, - "departure": { - "time": "1763603421" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603457" - }, - "departure": { - "time": "1763603457" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603530" - }, - "departure": { - "time": "1763603530" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603624" - }, - "departure": { - "time": "1763603624" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603659" - }, - "departure": { - "time": "1763603659" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603720" - }, - "departure": { - "time": "1763603720" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603781" - }, - "departure": { - "time": "1763603781" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603869" - }, - "departure": { - "time": "1763603869" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603978" - }, - "departure": { - "time": "1763603978" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604063" - }, - "departure": { - "time": "1763604063" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763604163" - }, - "departure": { - "time": "1763604163" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763604240" - }, - "departure": { - "time": "1763604240" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763604501" - }, - "departure": { - "time": "1763604501" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763604624" - }, - "departure": { - "time": "1763604624" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763604660" - }, - "departure": { - "time": "1763604660" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763604706" - }, - "departure": { - "time": "1763604706" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763604727" - }, - "departure": { - "time": "1763604727" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763604746" - }, - "departure": { - "time": "1763604746" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763604887" - }, - "departure": { - "time": "1763604887" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763604899" - }, - "departure": { - "time": "1763604899" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763604920" - }, - "departure": { - "time": "1763604920" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763604939" - }, - "departure": { - "time": "1763604939" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763604981" - }, - "departure": { - "time": "1763604981" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763605026" - }, - "departure": { - "time": "1763605026" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763605063" - }, - "departure": { - "time": "1763605063" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763605106" - }, - "departure": { - "time": "1763605106" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763605182" - }, - "departure": { - "time": "1763605182" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763605227" - }, - "departure": { - "time": "1763605227" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763605275" - }, - "departure": { - "time": "1763605275" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763605302" - }, - "departure": { - "time": "1763605302" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763605401" - }, - "departure": { - "time": "1763605401" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763605455" - }, - "departure": { - "time": "1763605455" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763605517" - }, - "departure": { - "time": "1763605517" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763605536" - }, - "departure": { - "time": "1763605536" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763605550" - }, - "departure": { - "time": "1763605550" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763605615" - }, - "departure": { - "time": "1763605615" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763605671" - }, - "departure": { - "time": "1763605671" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763605701" - }, - "departure": { - "time": "1763605701" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763605782" - }, - "departure": { - "time": "1763605782" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763606181" - }, - "departure": { - "time": "1763606181" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763606301" - }, - "departure": { - "time": "1763606301" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763606362" - }, - "departure": { - "time": "1763606362" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763606399" - }, - "departure": { - "time": "1763606399" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763606419" - }, - "departure": { - "time": "1763606419" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763606460" - }, - "departure": { - "time": "1763606460" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 83, - "arrival": { - "time": "1763606499" - }, - "departure": { - "time": "1763606499" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 84, - "arrival": { - "time": "1763606539" - }, - "departure": { - "time": "1763606539" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 85, - "arrival": { - "time": "1763606567" - }, - "departure": { - "time": "1763606567" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 86, - "arrival": { - "time": "1763606624" - }, - "departure": { - "time": "1763606624" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 87, - "arrival": { - "time": "1763606661" - }, - "departure": { - "time": "1763606661" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 88, - "arrival": { - "time": "1763606713" - }, - "departure": { - "time": "1763606713" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 89, - "arrival": { - "time": "1763606735" - }, - "departure": { - "time": "1763606735" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 90, - "arrival": { - "time": "1763606775" - }, - "departure": { - "time": "1763606775" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 91, - "arrival": { - "time": "1763606832" - }, - "departure": { - "time": "1763606832" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 92, - "arrival": { - "time": "1763606857" - }, - "departure": { - "time": "1763606857" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 93, - "arrival": { - "time": "1763606905" - }, - "departure": { - "time": "1763606905" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 94, - "arrival": { - "time": "1763606968" - }, - "departure": { - "time": "1763606968" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 95, - "arrival": { - "time": "1763606989" - }, - "departure": { - "time": "1763606989" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 96, - "arrival": { - "time": "1763607011" - }, - "departure": { - "time": "1763607011" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 97, - "arrival": { - "time": "1763607082" - }, - "departure": { - "time": "1763607082" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 98, - "arrival": { - "time": "1763607112" - }, - "departure": { - "time": "1763607112" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 99, - "arrival": { - "time": "1763607158" - }, - "departure": { - "time": "1763607158" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 100, - "arrival": { - "time": "1763607200" - }, - "departure": { - "time": "1763607200" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 101, - "arrival": { - "time": "1763607229" - }, - "departure": { - "time": "1763607229" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 102, - "arrival": { - "time": "1763607263" - }, - "departure": { - "time": "1763607263" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 103, - "arrival": { - "time": "1763607302" - }, - "departure": { - "time": "1763607302" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 104, - "arrival": { - "time": "1763607366" - }, - "departure": { - "time": "1763607366" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 105, - "arrival": { - "time": "1763607404" - }, - "departure": { - "time": "1763607404" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 106, - "arrival": { - "time": "1763607446" - }, - "departure": { - "time": "1763607446" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 107, - "arrival": { - "time": "1763607482" - }, - "departure": { - "time": "1763607482" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 108, - "arrival": { - "time": "1763607523" - }, - "departure": { - "time": "1763607523" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 109, - "arrival": { - "time": "1763607561" - }, - "departure": { - "time": "1763607561" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 110, - "arrival": { - "time": "1763607593" - }, - "departure": { - "time": "1763607593" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 111, - "arrival": { - "time": "1763607612" - }, - "departure": { - "time": "1763607612" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 112, - "arrival": { - "time": "1763607624" - }, - "departure": { - "time": "1763607624" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 113, - "arrival": { - "time": "1763607633" - }, - "departure": { - "time": "1763607633" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 114, - "arrival": { - "time": "1763607645" - }, - "departure": { - "time": "1763607645" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 115, - "arrival": { - "time": "1763607659" - }, - "departure": { - "time": "1763607659" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 116, - "arrival": { - "time": "1763607670" - }, - "departure": { - "time": "1763607670" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 117, - "arrival": { - "time": "1763607690" - }, - "departure": { - "time": "1763607690" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 118, - "arrival": { - "time": "1763607707" - }, - "departure": { - "time": "1763607707" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 119, - "arrival": { - "time": "1763607724" - }, - "departure": { - "time": "1763607724" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 120, - "arrival": { - "time": "1763607743" - }, - "departure": { - "time": "1763607743" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 121, - "arrival": { - "time": "1763607758" - }, - "departure": { - "time": "1763607758" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 122, - "arrival": { - "time": "1763607796" - }, - "departure": { - "time": "1763607796" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 123, - "arrival": { - "time": "1763607812" - }, - "departure": { - "time": "1763607812" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 124, - "arrival": { - "time": "1763607821" - }, - "departure": { - "time": "1763607821" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 125, - "arrival": { - "time": "1763607836" - }, - "departure": { - "time": "1763607836" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 126, - "arrival": { - "time": "1763607854" - }, - "departure": { - "time": "1763607854" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 127, - "arrival": { - "time": "1763607879" - }, - "departure": { - "time": "1763607879" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 128, - "arrival": { - "time": "1763607888" - }, - "departure": { - "time": "1763607888" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 129, - "arrival": { - "time": "1763607910" - }, - "departure": { - "time": "1763607910" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 130, - "arrival": { - "time": "1763607925" - }, - "departure": { - "time": "1763607925" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 131, - "arrival": { - "time": "1763607936" - }, - "departure": { - "time": "1763607936" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 132, - "arrival": { - "time": "1763607981" - }, - "departure": { - "time": "1763607981" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 133, - "arrival": { - "time": "1763607996" - }, - "departure": { - "time": "1763607996" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 134, - "arrival": { - "time": "1763608024" - }, - "departure": { - "time": "1763608024" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 135, - "arrival": { - "time": "1763608047" - }, - "departure": { - "time": "1763608047" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 136, - "arrival": { - "time": "1763608086" - }, - "departure": { - "time": "1763608086" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 137, - "arrival": { - "time": "1763608114" - }, - "departure": { - "time": "1763608114" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 138, - "arrival": { - "time": "1763608160" - }, - "departure": { - "time": "1763608160" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 139, - "arrival": { - "time": "1763608188" - }, - "departure": { - "time": "1763608188" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 140, - "arrival": { - "time": "1763608217" - }, - "departure": { - "time": "1763608217" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 141, - "arrival": { - "time": "1763608265" - }, - "departure": { - "time": "1763608265" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 142, - "arrival": { - "time": "1763608311" - }, - "departure": { - "time": "1763608311" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 143, - "arrival": { - "time": "1763608351" - }, - "departure": { - "time": "1763608351" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 144, - "arrival": { - "time": "1763608406" - }, - "departure": { - "time": "1763608406" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 145, - "arrival": { - "time": "1763608461" - }, - "departure": { - "time": "1763608461" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 146, - "arrival": { - "time": "1763608508" - }, - "departure": { - "time": "1763608508" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 147, - "arrival": { - "time": "1763608548" - }, - "departure": { - "time": "1763608548" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 148, - "arrival": { - "time": "1763608576" - }, - "departure": { - "time": "1763608576" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 149, - "arrival": { - "time": "1763608602" - }, - "departure": { - "time": "1763608602" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 150, - "arrival": { - "time": "1763608622" - }, - "departure": { - "time": "1763608622" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 151, - "arrival": { - "time": "1763608661" - }, - "departure": { - "time": "1763608661" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 152, - "arrival": { - "time": "1763608682" - }, - "departure": { - "time": "1763608682" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 153, - "arrival": { - "time": "1763608723" - }, - "departure": { - "time": "1763608723" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 154, - "arrival": { - "time": "1763608782" - }, - "departure": { - "time": "1763608782" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 155, - "arrival": { - "time": "1763608821" - }, - "departure": { - "time": "1763608821" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 156, - "arrival": { - "time": "1763608838" - }, - "departure": { - "time": "1763608838" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 157, - "arrival": { - "time": "1763608887" - }, - "departure": { - "time": "1763608887" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 158, - "arrival": { - "time": "1763608928" - }, - "departure": { - "time": "1763608928" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 159, - "arrival": { - "time": "1763608999" - }, - "departure": { - "time": "1763608999" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 160, - "arrival": { - "time": "1763609054" - }, - "departure": { - "time": "1763609054" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 161, - "arrival": { - "time": "1763609085" - }, - "departure": { - "time": "1763609085" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 162, - "arrival": { - "time": "1763609129" - }, - "departure": { - "time": "1763609129" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 163, - "arrival": { - "time": "1763609158" - }, - "departure": { - "time": "1763609158" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 164, - "arrival": { - "time": "1763609224" - }, - "departure": { - "time": "1763609224" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 165, - "arrival": { - "time": "1763609246" - }, - "departure": { - "time": "1763609246" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 166, - "arrival": { - "time": "1763609301" - }, - "departure": { - "time": "1763609301" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 167, - "arrival": { - "time": "1763609312" - }, - "departure": { - "time": "1763609312" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 168, - "arrival": { - "time": "1763609327" - }, - "departure": { - "time": "1763609327" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 169, - "arrival": { - "time": "1763609496" - }, - "departure": { - "time": "1763609496" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 170, - "arrival": { - "time": "1763609537" - }, - "departure": { - "time": "1763609537" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 171, - "arrival": { - "time": "1763609588" - }, - "departure": { - "time": "1763609588" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 172, - "arrival": { - "time": "1763609601" - }, - "departure": { - "time": "1763609601" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 173, - "arrival": { - "time": "1763609639" - }, - "departure": { - "time": "1763609639" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 174, - "arrival": { - "time": "1763609674" - }, - "departure": { - "time": "1763609674" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 175, - "arrival": { - "time": "1763609707" - }, - "departure": { - "time": "1763609707" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 176, - "arrival": { - "time": "1763609742" - }, - "departure": { - "time": "1763609742" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 177, - "arrival": { - "time": "1763609776" - }, - "departure": { - "time": "1763609776" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 178, - "arrival": { - "time": "1763609819" - }, - "departure": { - "time": "1763609819" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 179, - "arrival": { - "time": "1763609901" - }, - "departure": { - "time": "1763609901" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 180, - "arrival": { - "time": "1763609958" - }, - "departure": { - "time": "1763609958" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 181, - "arrival": { - "time": "1763610043" - }, - "departure": { - "time": "1763610043" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 182, - "arrival": { - "time": "1763610101" - }, - "departure": { - "time": "1763610101" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 183, - "arrival": { - "time": "1763610154" - }, - "departure": { - "time": "1763610154" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 184, - "arrival": { - "time": "1763610212" - }, - "departure": { - "time": "1763610212" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 185, - "arrival": { - "time": "1763610261" - }, - "departure": { - "time": "1763610261" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 186, - "arrival": { - "time": "1763610315" - }, - "departure": { - "time": "1763610315" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 187, - "arrival": { - "time": "1763610381" - }, - "departure": { - "time": "1763610381" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17012" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5526628_17045", - "tripUpdate": { - "trip": { - "tripId": "5526628", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 31, - "arrival": { - "time": "1763603085" - }, - "departure": { - "time": "1763603085" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603147" - }, - "departure": { - "time": "1763603147" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603210" - }, - "departure": { - "time": "1763603210" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603286" - }, - "departure": { - "time": "1763603286" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603480" - }, - "departure": { - "time": "1763603480" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603585" - }, - "departure": { - "time": "1763603585" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17045" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5526891_23024", - "tripUpdate": { - "trip": { - "tripId": "5526891", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 31, - "arrival": { - "time": "1763603260" - }, - "departure": { - "time": "1763603260" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 32, - "arrival": { - "time": "1763603284" - }, - "departure": { - "time": "1763603284" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763603342" - }, - "departure": { - "time": "1763603342" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603365" - }, - "departure": { - "time": "1763603365" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603400" - }, - "departure": { - "time": "1763603400" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603445" - }, - "departure": { - "time": "1763603445" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603506" - }, - "departure": { - "time": "1763603506" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603558" - }, - "departure": { - "time": "1763603558" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603640" - }, - "departure": { - "time": "1763603640" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603690" - }, - "departure": { - "time": "1763603690" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603729" - }, - "departure": { - "time": "1763603729" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603763" - }, - "departure": { - "time": "1763603763" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603821" - }, - "departure": { - "time": "1763603821" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603880" - }, - "departure": { - "time": "1763603880" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603930" - }, - "departure": { - "time": "1763603930" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603988" - }, - "departure": { - "time": "1763603988" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604080" - }, - "departure": { - "time": "1763604080" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763604120" - }, - "departure": { - "time": "1763604120" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763604161" - }, - "departure": { - "time": "1763604161" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763604264" - }, - "departure": { - "time": "1763604264" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763604306" - }, - "departure": { - "time": "1763604306" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763604350" - }, - "departure": { - "time": "1763604350" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763604432" - }, - "departure": { - "time": "1763604432" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763604463" - }, - "departure": { - "time": "1763604463" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763604720" - }, - "departure": { - "time": "1763604720" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23024" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5523900_23029", - "tripUpdate": { - "trip": { - "tripId": "5523900", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 32, - "arrival": { - "time": "1763603379" - }, - "departure": { - "time": "1763603379" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23029" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5574992_23217", - "tripUpdate": { - "trip": { - "tripId": "5574992", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 32, - "arrival": { - "time": "1763601782" - }, - "departure": { - "time": "1763601782" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 33, - "arrival": { - "time": "1763601805" - }, - "departure": { - "time": "1763601805" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763601827" - }, - "departure": { - "time": "1763601827" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763601860" - }, - "departure": { - "time": "1763601860" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763601879" - }, - "departure": { - "time": "1763601879" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763601917" - }, - "departure": { - "time": "1763601917" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763601957" - }, - "departure": { - "time": "1763601957" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763602007" - }, - "departure": { - "time": "1763602007" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763602036" - }, - "departure": { - "time": "1763602036" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763602065" - }, - "departure": { - "time": "1763602065" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763602105" - }, - "departure": { - "time": "1763602105" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763602152" - }, - "departure": { - "time": "1763602152" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763602187" - }, - "departure": { - "time": "1763602187" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763602290" - }, - "departure": { - "time": "1763602290" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763602461" - }, - "departure": { - "time": "1763602461" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763602667" - }, - "departure": { - "time": "1763602667" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23217" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5523848_13040", - "tripUpdate": { - "trip": { - "tripId": "5523848", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 33, - "arrival": { - "time": "1763603122" - }, - "departure": { - "time": "1763603122" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603258" - }, - "departure": { - "time": "1763603258" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603348" - }, - "departure": { - "time": "1763603348" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603471" - }, - "departure": { - "time": "1763603471" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603554" - }, - "departure": { - "time": "1763603554" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "13040" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5528197_20001", - "tripUpdate": { - "trip": { - "tripId": "5528197", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 33, - "arrival": { - "time": "1763602941" - }, - "departure": { - "time": "1763602941" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763602969" - }, - "departure": { - "time": "1763602969" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603004" - }, - "departure": { - "time": "1763603004" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603052" - }, - "departure": { - "time": "1763603052" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603070" - }, - "departure": { - "time": "1763603070" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603110" - }, - "departure": { - "time": "1763603110" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603129" - }, - "departure": { - "time": "1763603129" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603167" - }, - "departure": { - "time": "1763603167" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603200" - }, - "departure": { - "time": "1763603200" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603215" - }, - "departure": { - "time": "1763603215" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603267" - }, - "departure": { - "time": "1763603267" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603309" - }, - "departure": { - "time": "1763603309" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603436" - }, - "departure": { - "time": "1763603436" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603484" - }, - "departure": { - "time": "1763603484" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "20001" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5534745_13001", - "tripUpdate": { - "trip": { - "tripId": "5534745", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 33, - "arrival": { - "time": "1763602680" - }, - "departure": { - "time": "1763602680" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "13001" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5534811_17040", - "tripUpdate": { - "trip": { - "tripId": "5534811", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 33, - "arrival": { - "time": "1763602986" - }, - "departure": { - "time": "1763602986" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763603034" - }, - "departure": { - "time": "1763603034" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603107" - }, - "departure": { - "time": "1763603107" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603202" - }, - "departure": { - "time": "1763603202" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603244" - }, - "departure": { - "time": "1763603244" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603275" - }, - "departure": { - "time": "1763603275" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603317" - }, - "departure": { - "time": "1763603317" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603333" - }, - "departure": { - "time": "1763603333" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603355" - }, - "departure": { - "time": "1763603355" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603375" - }, - "departure": { - "time": "1763603375" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603410" - }, - "departure": { - "time": "1763603410" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603442" - }, - "departure": { - "time": "1763603442" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603473" - }, - "departure": { - "time": "1763603473" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603531" - }, - "departure": { - "time": "1763603531" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603571" - }, - "departure": { - "time": "1763603571" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603597" - }, - "departure": { - "time": "1763603597" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603686" - }, - "departure": { - "time": "1763603686" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603721" - }, - "departure": { - "time": "1763603721" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603810" - }, - "departure": { - "time": "1763603810" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603835" - }, - "departure": { - "time": "1763603835" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763603862" - }, - "departure": { - "time": "1763603862" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763603920" - }, - "departure": { - "time": "1763603920" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763603960" - }, - "departure": { - "time": "1763603960" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763603986" - }, - "departure": { - "time": "1763603986" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763604065" - }, - "departure": { - "time": "1763604065" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763604225" - }, - "departure": { - "time": "1763604225" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763604342" - }, - "departure": { - "time": "1763604342" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17040" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5534906_19007", - "tripUpdate": { - "trip": { - "tripId": "5534906", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 33, - "arrival": { - "time": "1763602911" - }, - "departure": { - "time": "1763602911" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 34, - "arrival": { - "time": "1763602936" - }, - "departure": { - "time": "1763602936" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763602957" - }, - "departure": { - "time": "1763602957" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603068" - }, - "departure": { - "time": "1763603068" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603163" - }, - "departure": { - "time": "1763603163" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603377" - }, - "departure": { - "time": "1763603377" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "19007" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5524117_13044", - "tripUpdate": { - "trip": { - "tripId": "5524117", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 34, - "arrival": { - "time": "1763602974" - }, - "departure": { - "time": "1763602974" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603031" - }, - "departure": { - "time": "1763603031" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603082" - }, - "departure": { - "time": "1763603082" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603134" - }, - "departure": { - "time": "1763603134" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603214" - }, - "departure": { - "time": "1763603214" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603326" - }, - "departure": { - "time": "1763603326" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603383" - }, - "departure": { - "time": "1763603383" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603452" - }, - "departure": { - "time": "1763603452" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603579" - }, - "departure": { - "time": "1763603579" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603622" - }, - "departure": { - "time": "1763603622" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603666" - }, - "departure": { - "time": "1763603666" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603719" - }, - "departure": { - "time": "1763603719" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603855" - }, - "departure": { - "time": "1763603855" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603934" - }, - "departure": { - "time": "1763603934" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "13044" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525235_07005", - "tripUpdate": { - "trip": { - "tripId": "5525235", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 34, - "arrival": { - "time": "1763602962" - }, - "departure": { - "time": "1763602962" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603004" - }, - "departure": { - "time": "1763603004" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603032" - }, - "departure": { - "time": "1763603032" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603108" - }, - "departure": { - "time": "1763603108" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603205" - }, - "departure": { - "time": "1763603205" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603271" - }, - "departure": { - "time": "1763603271" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603313" - }, - "departure": { - "time": "1763603313" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603381" - }, - "departure": { - "time": "1763603381" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603431" - }, - "departure": { - "time": "1763603431" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603495" - }, - "departure": { - "time": "1763603495" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603556" - }, - "departure": { - "time": "1763603556" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603603" - }, - "departure": { - "time": "1763603603" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603642" - }, - "departure": { - "time": "1763603642" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603700" - }, - "departure": { - "time": "1763603700" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603726" - }, - "departure": { - "time": "1763603726" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603793" - }, - "departure": { - "time": "1763603793" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603853" - }, - "departure": { - "time": "1763603853" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603887" - }, - "departure": { - "time": "1763603887" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603939" - }, - "departure": { - "time": "1763603939" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763603979" - }, - "departure": { - "time": "1763603979" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763604036" - }, - "departure": { - "time": "1763604036" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763604058" - }, - "departure": { - "time": "1763604058" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763604103" - }, - "departure": { - "time": "1763604103" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763604132" - }, - "departure": { - "time": "1763604132" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763604158" - }, - "departure": { - "time": "1763604158" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763604206" - }, - "departure": { - "time": "1763604206" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763604276" - }, - "departure": { - "time": "1763604276" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763604297" - }, - "departure": { - "time": "1763604297" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763604342" - }, - "departure": { - "time": "1763604342" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763604367" - }, - "departure": { - "time": "1763604367" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763604399" - }, - "departure": { - "time": "1763604399" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763604429" - }, - "departure": { - "time": "1763604429" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763604477" - }, - "departure": { - "time": "1763604477" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763604516" - }, - "departure": { - "time": "1763604516" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763604622" - }, - "departure": { - "time": "1763604622" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763604755" - }, - "departure": { - "time": "1763604755" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763604948" - }, - "departure": { - "time": "1763604948" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763605043" - }, - "departure": { - "time": "1763605043" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763605125" - }, - "departure": { - "time": "1763605125" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763605296" - }, - "departure": { - "time": "1763605296" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "07005" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5527965_23005", - "tripUpdate": { - "trip": { - "tripId": "5527965", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 34, - "arrival": { - "time": "1763602955" - }, - "departure": { - "time": "1763602955" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763603024" - }, - "departure": { - "time": "1763603024" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603066" - }, - "departure": { - "time": "1763603066" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603113" - }, - "departure": { - "time": "1763603113" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603145" - }, - "departure": { - "time": "1763603145" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603230" - }, - "departure": { - "time": "1763603230" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603271" - }, - "departure": { - "time": "1763603271" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603289" - }, - "departure": { - "time": "1763603289" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603324" - }, - "departure": { - "time": "1763603324" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603352" - }, - "departure": { - "time": "1763603352" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603396" - }, - "departure": { - "time": "1763603396" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603420" - }, - "departure": { - "time": "1763603420" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603455" - }, - "departure": { - "time": "1763603455" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603474" - }, - "departure": { - "time": "1763603474" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603497" - }, - "departure": { - "time": "1763603497" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603517" - }, - "departure": { - "time": "1763603517" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603572" - }, - "departure": { - "time": "1763603572" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603609" - }, - "departure": { - "time": "1763603609" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603642" - }, - "departure": { - "time": "1763603642" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763603659" - }, - "departure": { - "time": "1763603659" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763603694" - }, - "departure": { - "time": "1763603694" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763603717" - }, - "departure": { - "time": "1763603717" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763603733" - }, - "departure": { - "time": "1763603733" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763603804" - }, - "departure": { - "time": "1763603804" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763603840" - }, - "departure": { - "time": "1763603840" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763603914" - }, - "departure": { - "time": "1763603914" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763603962" - }, - "departure": { - "time": "1763603962" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763604035" - }, - "departure": { - "time": "1763604035" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763604105" - }, - "departure": { - "time": "1763604105" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763604167" - }, - "departure": { - "time": "1763604167" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763604214" - }, - "departure": { - "time": "1763604214" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763604246" - }, - "departure": { - "time": "1763604246" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763604350" - }, - "departure": { - "time": "1763604350" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763604399" - }, - "departure": { - "time": "1763604399" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763604427" - }, - "departure": { - "time": "1763604427" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763604584" - }, - "departure": { - "time": "1763604584" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23005" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5528063_23009", - "tripUpdate": { - "trip": { - "tripId": "5528063", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 34, - "arrival": { - "time": "1763602940" - }, - "departure": { - "time": "1763602940" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763602959" - }, - "departure": { - "time": "1763602959" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603031" - }, - "departure": { - "time": "1763603031" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603068" - }, - "departure": { - "time": "1763603068" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603098" - }, - "departure": { - "time": "1763603098" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603130" - }, - "departure": { - "time": "1763603130" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603162" - }, - "departure": { - "time": "1763603162" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603204" - }, - "departure": { - "time": "1763603204" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603333" - }, - "departure": { - "time": "1763603333" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603369" - }, - "departure": { - "time": "1763603369" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603408" - }, - "departure": { - "time": "1763603408" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603462" - }, - "departure": { - "time": "1763603462" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603829" - }, - "departure": { - "time": "1763603829" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603984" - }, - "departure": { - "time": "1763603984" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23009" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5534646_17008", - "tripUpdate": { - "trip": { - "tripId": "5534646", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 34, - "arrival": { - "time": "1763602941" - }, - "departure": { - "time": "1763602941" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763602970" - }, - "departure": { - "time": "1763602970" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603009" - }, - "departure": { - "time": "1763603009" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603073" - }, - "departure": { - "time": "1763603073" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603151" - }, - "departure": { - "time": "1763603151" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603225" - }, - "departure": { - "time": "1763603225" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603517" - }, - "departure": { - "time": "1763603517" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603542" - }, - "departure": { - "time": "1763603542" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603573" - }, - "departure": { - "time": "1763603573" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603593" - }, - "departure": { - "time": "1763603593" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603614" - }, - "departure": { - "time": "1763603614" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603635" - }, - "departure": { - "time": "1763603635" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603660" - }, - "departure": { - "time": "1763603660" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603680" - }, - "departure": { - "time": "1763603680" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603706" - }, - "departure": { - "time": "1763603706" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603737" - }, - "departure": { - "time": "1763603737" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603793" - }, - "departure": { - "time": "1763603793" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603859" - }, - "departure": { - "time": "1763603859" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603908" - }, - "departure": { - "time": "1763603908" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763603970" - }, - "departure": { - "time": "1763603970" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763603991" - }, - "departure": { - "time": "1763603991" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763604015" - }, - "departure": { - "time": "1763604015" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763604062" - }, - "departure": { - "time": "1763604062" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763604081" - }, - "departure": { - "time": "1763604081" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763604106" - }, - "departure": { - "time": "1763604106" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763604128" - }, - "departure": { - "time": "1763604128" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763604155" - }, - "departure": { - "time": "1763604155" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763604186" - }, - "departure": { - "time": "1763604186" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763604213" - }, - "departure": { - "time": "1763604213" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763604247" - }, - "departure": { - "time": "1763604247" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763604272" - }, - "departure": { - "time": "1763604272" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763604288" - }, - "departure": { - "time": "1763604288" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763604307" - }, - "departure": { - "time": "1763604307" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763604333" - }, - "departure": { - "time": "1763604333" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763604362" - }, - "departure": { - "time": "1763604362" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763604391" - }, - "departure": { - "time": "1763604391" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763604429" - }, - "departure": { - "time": "1763604429" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763604446" - }, - "departure": { - "time": "1763604446" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763604465" - }, - "departure": { - "time": "1763604465" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763604501" - }, - "departure": { - "time": "1763604501" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763604519" - }, - "departure": { - "time": "1763604519" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763604541" - }, - "departure": { - "time": "1763604541" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763604577" - }, - "departure": { - "time": "1763604577" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763604603" - }, - "departure": { - "time": "1763604603" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763604617" - }, - "departure": { - "time": "1763604617" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763604634" - }, - "departure": { - "time": "1763604634" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763604668" - }, - "departure": { - "time": "1763604668" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763604691" - }, - "departure": { - "time": "1763604691" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763604725" - }, - "departure": { - "time": "1763604725" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 83, - "arrival": { - "time": "1763604753" - }, - "departure": { - "time": "1763604753" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 84, - "arrival": { - "time": "1763604768" - }, - "departure": { - "time": "1763604768" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 85, - "arrival": { - "time": "1763604790" - }, - "departure": { - "time": "1763604790" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 86, - "arrival": { - "time": "1763604801" - }, - "departure": { - "time": "1763604801" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 87, - "arrival": { - "time": "1763604818" - }, - "departure": { - "time": "1763604818" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 88, - "arrival": { - "time": "1763604829" - }, - "departure": { - "time": "1763604829" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 89, - "arrival": { - "time": "1763604853" - }, - "departure": { - "time": "1763604853" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 90, - "arrival": { - "time": "1763604865" - }, - "departure": { - "time": "1763604865" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 91, - "arrival": { - "time": "1763604877" - }, - "departure": { - "time": "1763604877" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 92, - "arrival": { - "time": "1763604897" - }, - "departure": { - "time": "1763604897" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 93, - "arrival": { - "time": "1763604931" - }, - "departure": { - "time": "1763604931" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 94, - "arrival": { - "time": "1763604957" - }, - "departure": { - "time": "1763604957" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 95, - "arrival": { - "time": "1763604983" - }, - "departure": { - "time": "1763604983" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 96, - "arrival": { - "time": "1763605002" - }, - "departure": { - "time": "1763605002" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 97, - "arrival": { - "time": "1763605028" - }, - "departure": { - "time": "1763605028" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 98, - "arrival": { - "time": "1763605042" - }, - "departure": { - "time": "1763605042" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 99, - "arrival": { - "time": "1763605054" - }, - "departure": { - "time": "1763605054" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 100, - "arrival": { - "time": "1763605066" - }, - "departure": { - "time": "1763605066" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 101, - "arrival": { - "time": "1763605081" - }, - "departure": { - "time": "1763605081" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 102, - "arrival": { - "time": "1763605095" - }, - "departure": { - "time": "1763605095" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 103, - "arrival": { - "time": "1763605107" - }, - "departure": { - "time": "1763605107" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 104, - "arrival": { - "time": "1763605119" - }, - "departure": { - "time": "1763605119" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 105, - "arrival": { - "time": "1763605130" - }, - "departure": { - "time": "1763605130" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 106, - "arrival": { - "time": "1763605138" - }, - "departure": { - "time": "1763605138" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 107, - "arrival": { - "time": "1763605173" - }, - "departure": { - "time": "1763605173" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 108, - "arrival": { - "time": "1763605203" - }, - "departure": { - "time": "1763605203" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 109, - "arrival": { - "time": "1763605223" - }, - "departure": { - "time": "1763605223" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 110, - "arrival": { - "time": "1763605253" - }, - "departure": { - "time": "1763605253" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 111, - "arrival": { - "time": "1763605303" - }, - "departure": { - "time": "1763605303" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 112, - "arrival": { - "time": "1763605347" - }, - "departure": { - "time": "1763605347" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 113, - "arrival": { - "time": "1763605533" - }, - "departure": { - "time": "1763605533" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 114, - "arrival": { - "time": "1763605645" - }, - "departure": { - "time": "1763605645" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 115, - "arrival": { - "time": "1763605672" - }, - "departure": { - "time": "1763605672" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 116, - "arrival": { - "time": "1763605703" - }, - "departure": { - "time": "1763605703" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 117, - "arrival": { - "time": "1763605755" - }, - "departure": { - "time": "1763605755" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 118, - "arrival": { - "time": "1763605798" - }, - "departure": { - "time": "1763605798" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 119, - "arrival": { - "time": "1763605828" - }, - "departure": { - "time": "1763605828" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 120, - "arrival": { - "time": "1763605855" - }, - "departure": { - "time": "1763605855" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 121, - "arrival": { - "time": "1763605885" - }, - "departure": { - "time": "1763605885" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 122, - "arrival": { - "time": "1763605914" - }, - "departure": { - "time": "1763605914" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 123, - "arrival": { - "time": "1763605950" - }, - "departure": { - "time": "1763605950" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 124, - "arrival": { - "time": "1763605989" - }, - "departure": { - "time": "1763605989" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 125, - "arrival": { - "time": "1763606020" - }, - "departure": { - "time": "1763606020" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 126, - "arrival": { - "time": "1763606073" - }, - "departure": { - "time": "1763606073" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 127, - "arrival": { - "time": "1763606106" - }, - "departure": { - "time": "1763606106" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 128, - "arrival": { - "time": "1763606156" - }, - "departure": { - "time": "1763606156" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 129, - "arrival": { - "time": "1763606184" - }, - "departure": { - "time": "1763606184" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 130, - "arrival": { - "time": "1763606325" - }, - "departure": { - "time": "1763606325" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 131, - "arrival": { - "time": "1763606440" - }, - "departure": { - "time": "1763606440" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 132, - "arrival": { - "time": "1763606484" - }, - "departure": { - "time": "1763606484" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 133, - "arrival": { - "time": "1763606673" - }, - "departure": { - "time": "1763606673" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 134, - "arrival": { - "time": "1763607093" - }, - "departure": { - "time": "1763607093" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 135, - "arrival": { - "time": "1763607156" - }, - "departure": { - "time": "1763607156" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 136, - "arrival": { - "time": "1763607273" - }, - "departure": { - "time": "1763607273" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 137, - "arrival": { - "time": "1763607513" - }, - "departure": { - "time": "1763607513" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 138, - "arrival": { - "time": "1763607732" - }, - "departure": { - "time": "1763607732" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 139, - "arrival": { - "time": "1763607895" - }, - "departure": { - "time": "1763607895" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 140, - "arrival": { - "time": "1763607959" - }, - "departure": { - "time": "1763607959" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 141, - "arrival": { - "time": "1763608038" - }, - "departure": { - "time": "1763608038" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 142, - "arrival": { - "time": "1763608065" - }, - "departure": { - "time": "1763608065" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 143, - "arrival": { - "time": "1763608108" - }, - "departure": { - "time": "1763608108" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 144, - "arrival": { - "time": "1763608124" - }, - "departure": { - "time": "1763608124" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 145, - "arrival": { - "time": "1763608159" - }, - "departure": { - "time": "1763608159" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 146, - "arrival": { - "time": "1763608175" - }, - "departure": { - "time": "1763608175" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 147, - "arrival": { - "time": "1763608198" - }, - "departure": { - "time": "1763608198" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 148, - "arrival": { - "time": "1763608241" - }, - "departure": { - "time": "1763608241" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 149, - "arrival": { - "time": "1763608293" - }, - "departure": { - "time": "1763608293" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 150, - "arrival": { - "time": "1763608413" - }, - "departure": { - "time": "1763608413" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 151, - "arrival": { - "time": "1763608625" - }, - "departure": { - "time": "1763608625" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 152, - "arrival": { - "time": "1763608751" - }, - "departure": { - "time": "1763608751" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 153, - "arrival": { - "time": "1763608828" - }, - "departure": { - "time": "1763608828" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 154, - "arrival": { - "time": "1763608878" - }, - "departure": { - "time": "1763608878" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 155, - "arrival": { - "time": "1763608907" - }, - "departure": { - "time": "1763608907" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 156, - "arrival": { - "time": "1763608937" - }, - "departure": { - "time": "1763608937" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 157, - "arrival": { - "time": "1763608992" - }, - "departure": { - "time": "1763608992" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 158, - "arrival": { - "time": "1763609028" - }, - "departure": { - "time": "1763609028" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 159, - "arrival": { - "time": "1763609104" - }, - "departure": { - "time": "1763609104" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 160, - "arrival": { - "time": "1763609141" - }, - "departure": { - "time": "1763609141" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 161, - "arrival": { - "time": "1763609176" - }, - "departure": { - "time": "1763609176" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 162, - "arrival": { - "time": "1763609213" - }, - "departure": { - "time": "1763609213" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 163, - "arrival": { - "time": "1763609255" - }, - "departure": { - "time": "1763609255" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 164, - "arrival": { - "time": "1763609433" - }, - "departure": { - "time": "1763609433" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 165, - "arrival": { - "time": "1763609665" - }, - "departure": { - "time": "1763609665" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 166, - "arrival": { - "time": "1763609741" - }, - "departure": { - "time": "1763609741" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 167, - "arrival": { - "time": "1763610033" - }, - "departure": { - "time": "1763610033" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17008" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5534836_23043", - "tripUpdate": { - "trip": { - "tripId": "5534836", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 34, - "arrival": { - "time": "1763602840" - }, - "departure": { - "time": "1763602840" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 35, - "arrival": { - "time": "1763602920" - }, - "departure": { - "time": "1763602920" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763602960" - }, - "departure": { - "time": "1763602960" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603006" - }, - "departure": { - "time": "1763603006" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603048" - }, - "departure": { - "time": "1763603048" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603066" - }, - "departure": { - "time": "1763603066" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603099" - }, - "departure": { - "time": "1763603099" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603142" - }, - "departure": { - "time": "1763603142" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603176" - }, - "departure": { - "time": "1763603176" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603220" - }, - "departure": { - "time": "1763603220" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603273" - }, - "departure": { - "time": "1763603273" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603345" - }, - "departure": { - "time": "1763603345" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603400" - }, - "departure": { - "time": "1763603400" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603473" - }, - "departure": { - "time": "1763603473" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603518" - }, - "departure": { - "time": "1763603518" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603582" - }, - "departure": { - "time": "1763603582" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603640" - }, - "departure": { - "time": "1763603640" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23043" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5524847_24006", - "tripUpdate": { - "trip": { - "tripId": "5524847", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 35, - "arrival": { - "time": "1763602969" - }, - "departure": { - "time": "1763602969" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763603000" - }, - "departure": { - "time": "1763603000" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603050" - }, - "departure": { - "time": "1763603050" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603160" - }, - "departure": { - "time": "1763603160" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603216" - }, - "departure": { - "time": "1763603216" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603271" - }, - "departure": { - "time": "1763603271" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603312" - }, - "departure": { - "time": "1763603312" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603364" - }, - "departure": { - "time": "1763603364" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603404" - }, - "departure": { - "time": "1763603404" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603460" - }, - "departure": { - "time": "1763603460" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603567" - }, - "departure": { - "time": "1763603567" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603671" - }, - "departure": { - "time": "1763603671" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603760" - }, - "departure": { - "time": "1763603760" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603852" - }, - "departure": { - "time": "1763603852" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603930" - }, - "departure": { - "time": "1763603930" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763604010" - }, - "departure": { - "time": "1763604010" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763604201" - }, - "departure": { - "time": "1763604201" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763604300" - }, - "departure": { - "time": "1763604300" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "24006" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5529223_17055", - "tripUpdate": { - "trip": { - "tripId": "5529223", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 35, - "arrival": { - "time": "1763602954" - }, - "departure": { - "time": "1763602954" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763602986" - }, - "departure": { - "time": "1763602986" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603004" - }, - "departure": { - "time": "1763603004" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603030" - }, - "departure": { - "time": "1763603030" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603051" - }, - "departure": { - "time": "1763603051" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603126" - }, - "departure": { - "time": "1763603126" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603168" - }, - "departure": { - "time": "1763603168" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603190" - }, - "departure": { - "time": "1763603190" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603228" - }, - "departure": { - "time": "1763603228" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603254" - }, - "departure": { - "time": "1763603254" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603303" - }, - "departure": { - "time": "1763603303" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603374" - }, - "departure": { - "time": "1763603374" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603415" - }, - "departure": { - "time": "1763603415" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603443" - }, - "departure": { - "time": "1763603443" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603494" - }, - "departure": { - "time": "1763603494" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603560" - }, - "departure": { - "time": "1763603560" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603614" - }, - "departure": { - "time": "1763603614" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17055" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5529958_18020", - "tripUpdate": { - "trip": { - "tripId": "5529958", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 35, - "arrival": { - "time": "1763602929" - }, - "departure": { - "time": "1763602929" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 36, - "arrival": { - "time": "1763602966" - }, - "departure": { - "time": "1763602966" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763603005" - }, - "departure": { - "time": "1763603005" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603044" - }, - "departure": { - "time": "1763603044" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603085" - }, - "departure": { - "time": "1763603085" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603117" - }, - "departure": { - "time": "1763603117" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603190" - }, - "departure": { - "time": "1763603190" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603235" - }, - "departure": { - "time": "1763603235" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603285" - }, - "departure": { - "time": "1763603285" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603355" - }, - "departure": { - "time": "1763603355" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603430" - }, - "departure": { - "time": "1763603430" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603509" - }, - "departure": { - "time": "1763603509" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603558" - }, - "departure": { - "time": "1763603558" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603589" - }, - "departure": { - "time": "1763603589" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603654" - }, - "departure": { - "time": "1763603654" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603694" - }, - "departure": { - "time": "1763603694" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603790" - }, - "departure": { - "time": "1763603790" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603832" - }, - "departure": { - "time": "1763603832" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763603856" - }, - "departure": { - "time": "1763603856" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763603877" - }, - "departure": { - "time": "1763603877" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763603897" - }, - "departure": { - "time": "1763603897" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763603913" - }, - "departure": { - "time": "1763603913" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763603926" - }, - "departure": { - "time": "1763603926" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763603940" - }, - "departure": { - "time": "1763603940" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763603963" - }, - "departure": { - "time": "1763603963" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763603988" - }, - "departure": { - "time": "1763603988" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763604012" - }, - "departure": { - "time": "1763604012" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763604037" - }, - "departure": { - "time": "1763604037" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763604075" - }, - "departure": { - "time": "1763604075" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763604098" - }, - "departure": { - "time": "1763604098" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763604110" - }, - "departure": { - "time": "1763604110" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763604136" - }, - "departure": { - "time": "1763604136" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763604150" - }, - "departure": { - "time": "1763604150" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763604191" - }, - "departure": { - "time": "1763604191" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763604208" - }, - "departure": { - "time": "1763604208" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763604239" - }, - "departure": { - "time": "1763604239" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763604282" - }, - "departure": { - "time": "1763604282" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763604296" - }, - "departure": { - "time": "1763604296" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763604332" - }, - "departure": { - "time": "1763604332" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763604366" - }, - "departure": { - "time": "1763604366" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763604382" - }, - "departure": { - "time": "1763604382" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763604412" - }, - "departure": { - "time": "1763604412" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763604432" - }, - "departure": { - "time": "1763604432" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763604450" - }, - "departure": { - "time": "1763604450" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763604810" - }, - "departure": { - "time": "1763604810" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "18020" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5524910_23107", - "tripUpdate": { - "trip": { - "tripId": "5524910", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 36, - "arrival": { - "time": "1763602440" - }, - "departure": { - "time": "1763602440" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763602512" - }, - "departure": { - "time": "1763602512" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763602564" - }, - "departure": { - "time": "1763602564" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763602620" - }, - "departure": { - "time": "1763602620" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763602687" - }, - "departure": { - "time": "1763602687" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763602793" - }, - "departure": { - "time": "1763602793" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763602866" - }, - "departure": { - "time": "1763602866" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763602934" - }, - "departure": { - "time": "1763602934" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763602980" - }, - "departure": { - "time": "1763602980" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603089" - }, - "departure": { - "time": "1763603089" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603397" - }, - "departure": { - "time": "1763603397" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603520" - }, - "departure": { - "time": "1763603520" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23107" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5528723_18010", - "tripUpdate": { - "trip": { - "tripId": "5528723", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 36, - "arrival": { - "time": "1763602888" - }, - "departure": { - "time": "1763602888" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763602911" - }, - "departure": { - "time": "1763602911" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763602935" - }, - "departure": { - "time": "1763602935" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763602970" - }, - "departure": { - "time": "1763602970" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603007" - }, - "departure": { - "time": "1763603007" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603045" - }, - "departure": { - "time": "1763603045" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603084" - }, - "departure": { - "time": "1763603084" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603121" - }, - "departure": { - "time": "1763603121" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603174" - }, - "departure": { - "time": "1763603174" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603194" - }, - "departure": { - "time": "1763603194" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603235" - }, - "departure": { - "time": "1763603235" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603280" - }, - "departure": { - "time": "1763603280" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603304" - }, - "departure": { - "time": "1763603304" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603364" - }, - "departure": { - "time": "1763603364" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603388" - }, - "departure": { - "time": "1763603388" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603414" - }, - "departure": { - "time": "1763603414" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603442" - }, - "departure": { - "time": "1763603442" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763603503" - }, - "departure": { - "time": "1763603503" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763603541" - }, - "departure": { - "time": "1763603541" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763603570" - }, - "departure": { - "time": "1763603570" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763603604" - }, - "departure": { - "time": "1763603604" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763603637" - }, - "departure": { - "time": "1763603637" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763603653" - }, - "departure": { - "time": "1763603653" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763603682" - }, - "departure": { - "time": "1763603682" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763603704" - }, - "departure": { - "time": "1763603704" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763603760" - }, - "departure": { - "time": "1763603760" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "18010" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5528898_18003", - "tripUpdate": { - "trip": { - "tripId": "5528898", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 36, - "arrival": { - "time": "1763602929" - }, - "departure": { - "time": "1763602929" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "18003" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5618175_13052", - "tripUpdate": { - "trip": { - "tripId": "5618175", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 36, - "arrival": { - "time": "1763602951" - }, - "departure": { - "time": "1763602951" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763602988" - }, - "departure": { - "time": "1763602988" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603029" - }, - "departure": { - "time": "1763603029" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603089" - }, - "departure": { - "time": "1763603089" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603112" - }, - "departure": { - "time": "1763603112" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603142" - }, - "departure": { - "time": "1763603142" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603183" - }, - "departure": { - "time": "1763603183" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603258" - }, - "departure": { - "time": "1763603258" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603295" - }, - "departure": { - "time": "1763603295" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603339" - }, - "departure": { - "time": "1763603339" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603382" - }, - "departure": { - "time": "1763603382" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603445" - }, - "departure": { - "time": "1763603445" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603482" - }, - "departure": { - "time": "1763603482" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603513" - }, - "departure": { - "time": "1763603513" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603540" - }, - "departure": { - "time": "1763603540" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603600" - }, - "departure": { - "time": "1763603600" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603632" - }, - "departure": { - "time": "1763603632" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763603684" - }, - "departure": { - "time": "1763603684" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763603727" - }, - "departure": { - "time": "1763603727" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763603770" - }, - "departure": { - "time": "1763603770" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763603829" - }, - "departure": { - "time": "1763603829" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763603948" - }, - "departure": { - "time": "1763603948" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763603985" - }, - "departure": { - "time": "1763603985" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763604012" - }, - "departure": { - "time": "1763604012" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763604098" - }, - "departure": { - "time": "1763604098" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763604159" - }, - "departure": { - "time": "1763604159" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763604200" - }, - "departure": { - "time": "1763604200" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763604230" - }, - "departure": { - "time": "1763604230" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763604257" - }, - "departure": { - "time": "1763604257" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763604290" - }, - "departure": { - "time": "1763604290" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763604331" - }, - "departure": { - "time": "1763604331" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763604372" - }, - "departure": { - "time": "1763604372" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763604415" - }, - "departure": { - "time": "1763604415" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763604461" - }, - "departure": { - "time": "1763604461" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763604518" - }, - "departure": { - "time": "1763604518" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763604551" - }, - "departure": { - "time": "1763604551" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763604588" - }, - "departure": { - "time": "1763604588" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763604628" - }, - "departure": { - "time": "1763604628" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763604705" - }, - "departure": { - "time": "1763604705" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763604752" - }, - "departure": { - "time": "1763604752" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763604804" - }, - "departure": { - "time": "1763604804" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763604855" - }, - "departure": { - "time": "1763604855" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763604903" - }, - "departure": { - "time": "1763604903" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763604961" - }, - "departure": { - "time": "1763604961" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763605039" - }, - "departure": { - "time": "1763605039" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763605171" - }, - "departure": { - "time": "1763605171" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763605298" - }, - "departure": { - "time": "1763605298" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "13052" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5620507_22009", - "tripUpdate": { - "trip": { - "tripId": "5620507", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 36, - "arrival": { - "time": "1763602948" - }, - "departure": { - "time": "1763602948" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 37, - "arrival": { - "time": "1763602987" - }, - "departure": { - "time": "1763602987" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603145" - }, - "departure": { - "time": "1763603145" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603280" - }, - "departure": { - "time": "1763603280" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603325" - }, - "departure": { - "time": "1763603325" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603345" - }, - "departure": { - "time": "1763603345" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603393" - }, - "departure": { - "time": "1763603393" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603427" - }, - "departure": { - "time": "1763603427" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603459" - }, - "departure": { - "time": "1763603459" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603499" - }, - "departure": { - "time": "1763603499" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603519" - }, - "departure": { - "time": "1763603519" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603539" - }, - "departure": { - "time": "1763603539" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603559" - }, - "departure": { - "time": "1763603559" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603598" - }, - "departure": { - "time": "1763603598" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603640" - }, - "departure": { - "time": "1763603640" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603671" - }, - "departure": { - "time": "1763603671" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603715" - }, - "departure": { - "time": "1763603715" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763603833" - }, - "departure": { - "time": "1763603833" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763603891" - }, - "departure": { - "time": "1763603891" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763603937" - }, - "departure": { - "time": "1763603937" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763604128" - }, - "departure": { - "time": "1763604128" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763604213" - }, - "departure": { - "time": "1763604213" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763604255" - }, - "departure": { - "time": "1763604255" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763604360" - }, - "departure": { - "time": "1763604360" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "22009" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5527227_17056", - "tripUpdate": { - "trip": { - "tripId": "5527227", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 37, - "arrival": { - "time": "1763603839" - }, - "departure": { - "time": "1763603839" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603894" - }, - "departure": { - "time": "1763603894" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603941" - }, - "departure": { - "time": "1763603941" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603979" - }, - "departure": { - "time": "1763603979" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763604070" - }, - "departure": { - "time": "1763604070" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763604122" - }, - "departure": { - "time": "1763604122" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763604240" - }, - "departure": { - "time": "1763604240" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763604300" - }, - "departure": { - "time": "1763604300" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763604510" - }, - "departure": { - "time": "1763604510" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763604580" - }, - "departure": { - "time": "1763604580" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763604641" - }, - "departure": { - "time": "1763604641" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763604692" - }, - "departure": { - "time": "1763604692" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763604749" - }, - "departure": { - "time": "1763604749" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763604800" - }, - "departure": { - "time": "1763604800" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763604862" - }, - "departure": { - "time": "1763604862" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763604902" - }, - "departure": { - "time": "1763604902" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763604931" - }, - "departure": { - "time": "1763604931" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763604981" - }, - "departure": { - "time": "1763604981" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763605020" - }, - "departure": { - "time": "1763605020" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763605380" - }, - "departure": { - "time": "1763605380" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17056" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5528742_17036", - "tripUpdate": { - "trip": { - "tripId": "5528742", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 37, - "arrival": { - "time": "1763602917" - }, - "departure": { - "time": "1763602917" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763602964" - }, - "departure": { - "time": "1763602964" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763602989" - }, - "departure": { - "time": "1763602989" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603010" - }, - "departure": { - "time": "1763603010" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603046" - }, - "departure": { - "time": "1763603046" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603087" - }, - "departure": { - "time": "1763603087" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603409" - }, - "departure": { - "time": "1763603409" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603709" - }, - "departure": { - "time": "1763603709" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603809" - }, - "departure": { - "time": "1763603809" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603850" - }, - "departure": { - "time": "1763603850" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603930" - }, - "departure": { - "time": "1763603930" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603988" - }, - "departure": { - "time": "1763603988" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763604032" - }, - "departure": { - "time": "1763604032" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763604051" - }, - "departure": { - "time": "1763604051" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763604128" - }, - "departure": { - "time": "1763604128" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763604158" - }, - "departure": { - "time": "1763604158" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763604189" - }, - "departure": { - "time": "1763604189" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763604270" - }, - "departure": { - "time": "1763604270" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763604369" - }, - "departure": { - "time": "1763604369" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763604415" - }, - "departure": { - "time": "1763604415" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763604544" - }, - "departure": { - "time": "1763604544" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763604720" - }, - "departure": { - "time": "1763604720" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763604849" - }, - "departure": { - "time": "1763604849" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17036" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5530250_17077", - "tripUpdate": { - "trip": { - "tripId": "5530250", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 37, - "arrival": { - "time": "1763602968" - }, - "departure": { - "time": "1763602968" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763603006" - }, - "departure": { - "time": "1763603006" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603068" - }, - "departure": { - "time": "1763603068" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603141" - }, - "departure": { - "time": "1763603141" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603352" - }, - "departure": { - "time": "1763603352" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17077" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5617892_21005", - "tripUpdate": { - "trip": { - "tripId": "5617892", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 37, - "arrival": { - "time": "1763602931" - }, - "departure": { - "time": "1763602931" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 38, - "arrival": { - "time": "1763602974" - }, - "departure": { - "time": "1763602974" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603103" - }, - "departure": { - "time": "1763603103" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603189" - }, - "departure": { - "time": "1763603189" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603302" - }, - "departure": { - "time": "1763603302" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603424" - }, - "departure": { - "time": "1763603424" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603455" - }, - "departure": { - "time": "1763603455" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603485" - }, - "departure": { - "time": "1763603485" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603513" - }, - "departure": { - "time": "1763603513" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603545" - }, - "departure": { - "time": "1763603545" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603583" - }, - "departure": { - "time": "1763603583" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603669" - }, - "departure": { - "time": "1763603669" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603710" - }, - "departure": { - "time": "1763603710" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603754" - }, - "departure": { - "time": "1763603754" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603803" - }, - "departure": { - "time": "1763603803" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603919" - }, - "departure": { - "time": "1763603919" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763604022" - }, - "departure": { - "time": "1763604022" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "21005" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5523854_13035", - "tripUpdate": { - "trip": { - "tripId": "5523854", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 38, - "arrival": { - "time": "1763603700" - }, - "departure": { - "time": "1763603700" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "13035" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5526297_15006", - "tripUpdate": { - "trip": { - "tripId": "5526297", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 38, - "arrival": { - "time": "1763602947" - }, - "departure": { - "time": "1763602947" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763602980" - }, - "departure": { - "time": "1763602980" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603009" - }, - "departure": { - "time": "1763603009" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603037" - }, - "departure": { - "time": "1763603037" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603063" - }, - "departure": { - "time": "1763603063" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603271" - }, - "departure": { - "time": "1763603271" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603317" - }, - "departure": { - "time": "1763603317" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603460" - }, - "departure": { - "time": "1763603460" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603495" - }, - "departure": { - "time": "1763603495" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603521" - }, - "departure": { - "time": "1763603521" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603548" - }, - "departure": { - "time": "1763603548" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603566" - }, - "departure": { - "time": "1763603566" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603593" - }, - "departure": { - "time": "1763603593" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603619" - }, - "departure": { - "time": "1763603619" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603644" - }, - "departure": { - "time": "1763603644" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763603661" - }, - "departure": { - "time": "1763603661" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763603686" - }, - "departure": { - "time": "1763603686" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763603760" - }, - "departure": { - "time": "1763603760" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763603801" - }, - "departure": { - "time": "1763603801" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763603880" - }, - "departure": { - "time": "1763603880" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763603957" - }, - "departure": { - "time": "1763603957" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763604048" - }, - "departure": { - "time": "1763604048" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763604147" - }, - "departure": { - "time": "1763604147" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763604176" - }, - "departure": { - "time": "1763604176" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763604240" - }, - "departure": { - "time": "1763604240" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "15006" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5527224_23020", - "tripUpdate": { - "trip": { - "tripId": "5527224", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 38, - "arrival": { - "time": "1763602994" - }, - "departure": { - "time": "1763602994" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763603041" - }, - "departure": { - "time": "1763603041" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603079" - }, - "departure": { - "time": "1763603079" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603170" - }, - "departure": { - "time": "1763603170" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603222" - }, - "departure": { - "time": "1763603222" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603340" - }, - "departure": { - "time": "1763603340" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603400" - }, - "departure": { - "time": "1763603400" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603610" - }, - "departure": { - "time": "1763603610" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603680" - }, - "departure": { - "time": "1763603680" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603741" - }, - "departure": { - "time": "1763603741" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603792" - }, - "departure": { - "time": "1763603792" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603849" - }, - "departure": { - "time": "1763603849" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603900" - }, - "departure": { - "time": "1763603900" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603962" - }, - "departure": { - "time": "1763603962" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763604002" - }, - "departure": { - "time": "1763604002" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763604031" - }, - "departure": { - "time": "1763604031" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763604081" - }, - "departure": { - "time": "1763604081" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763604120" - }, - "departure": { - "time": "1763604120" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763604480" - }, - "departure": { - "time": "1763604480" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23020" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5528346_17044", - "tripUpdate": { - "trip": { - "tripId": "5528346", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 38, - "arrival": { - "time": "1763602240" - }, - "departure": { - "time": "1763602240" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763602332" - }, - "departure": { - "time": "1763602332" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17044" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5529155_17051", - "tripUpdate": { - "trip": { - "tripId": "5529155", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 38, - "arrival": { - "time": "1763602918" - }, - "departure": { - "time": "1763602918" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763602943" - }, - "departure": { - "time": "1763602943" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763602985" - }, - "departure": { - "time": "1763602985" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603030" - }, - "departure": { - "time": "1763603030" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603063" - }, - "departure": { - "time": "1763603063" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603152" - }, - "departure": { - "time": "1763603152" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603152" - }, - "departure": { - "time": "1763603152" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603302" - }, - "departure": { - "time": "1763603302" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603337" - }, - "departure": { - "time": "1763603337" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603372" - }, - "departure": { - "time": "1763603372" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603397" - }, - "departure": { - "time": "1763603397" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603489" - }, - "departure": { - "time": "1763603489" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603526" - }, - "departure": { - "time": "1763603526" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603567" - }, - "departure": { - "time": "1763603567" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603607" - }, - "departure": { - "time": "1763603607" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763603692" - }, - "departure": { - "time": "1763603692" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17051" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5530467_11020", - "tripUpdate": { - "trip": { - "tripId": "5530467", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 38, - "arrival": { - "time": "1763602793" - }, - "departure": { - "time": "1763602793" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763602860" - }, - "departure": { - "time": "1763602860" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763602880" - }, - "departure": { - "time": "1763602880" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763602893" - }, - "departure": { - "time": "1763602893" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763602935" - }, - "departure": { - "time": "1763602935" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763602974" - }, - "departure": { - "time": "1763602974" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603008" - }, - "departure": { - "time": "1763603008" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603046" - }, - "departure": { - "time": "1763603046" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603075" - }, - "departure": { - "time": "1763603075" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603118" - }, - "departure": { - "time": "1763603118" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603137" - }, - "departure": { - "time": "1763603137" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603159" - }, - "departure": { - "time": "1763603159" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603182" - }, - "departure": { - "time": "1763603182" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603220" - }, - "departure": { - "time": "1763603220" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603248" - }, - "departure": { - "time": "1763603248" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763603580" - }, - "departure": { - "time": "1763603580" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763603611" - }, - "departure": { - "time": "1763603611" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763603632" - }, - "departure": { - "time": "1763603632" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763603653" - }, - "departure": { - "time": "1763603653" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763603711" - }, - "departure": { - "time": "1763603711" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763603734" - }, - "departure": { - "time": "1763603734" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763603760" - }, - "departure": { - "time": "1763603760" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763603919" - }, - "departure": { - "time": "1763603919" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763604123" - }, - "departure": { - "time": "1763604123" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763604480" - }, - "departure": { - "time": "1763604480" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763604596" - }, - "departure": { - "time": "1763604596" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763604632" - }, - "departure": { - "time": "1763604632" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763604678" - }, - "departure": { - "time": "1763604678" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763604699" - }, - "departure": { - "time": "1763604699" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763604720" - }, - "departure": { - "time": "1763604720" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763604930" - }, - "departure": { - "time": "1763604930" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763604993" - }, - "departure": { - "time": "1763604993" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763605048" - }, - "departure": { - "time": "1763605048" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763605140" - }, - "departure": { - "time": "1763605140" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763605205" - }, - "departure": { - "time": "1763605205" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763605262" - }, - "departure": { - "time": "1763605262" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763605376" - }, - "departure": { - "time": "1763605376" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763605392" - }, - "departure": { - "time": "1763605392" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763605419" - }, - "departure": { - "time": "1763605419" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763605444" - }, - "departure": { - "time": "1763605444" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763605526" - }, - "departure": { - "time": "1763605526" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763605569" - }, - "departure": { - "time": "1763605569" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763605632" - }, - "departure": { - "time": "1763605632" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763605696" - }, - "departure": { - "time": "1763605696" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763605740" - }, - "departure": { - "time": "1763605740" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "11020" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5617315_22016", - "tripUpdate": { - "trip": { - "tripId": "5617315", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 38, - "arrival": { - "time": "1763602907" - }, - "departure": { - "time": "1763602907" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "22016" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5718412_22005", - "tripUpdate": { - "trip": { - "tripId": "5718412", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 38, - "arrival": { - "time": "1763602926" - }, - "departure": { - "time": "1763602926" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 39, - "arrival": { - "time": "1763602960" - }, - "departure": { - "time": "1763602960" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603002" - }, - "departure": { - "time": "1763603002" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603046" - }, - "departure": { - "time": "1763603046" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603094" - }, - "departure": { - "time": "1763603094" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603110" - }, - "departure": { - "time": "1763603110" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603163" - }, - "departure": { - "time": "1763603163" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603214" - }, - "departure": { - "time": "1763603214" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603474" - }, - "departure": { - "time": "1763603474" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603591" - }, - "departure": { - "time": "1763603591" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603694" - }, - "departure": { - "time": "1763603694" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "22005" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5618237_22003", - "tripUpdate": { - "trip": { - "tripId": "5618237", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 39, - "arrival": { - "time": "1763603160" - }, - "departure": { - "time": "1763603160" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 40, - "arrival": { - "time": "1763603203" - }, - "departure": { - "time": "1763603203" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603230" - }, - "departure": { - "time": "1763603230" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603266" - }, - "departure": { - "time": "1763603266" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603309" - }, - "departure": { - "time": "1763603309" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603346" - }, - "departure": { - "time": "1763603346" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603367" - }, - "departure": { - "time": "1763603367" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603391" - }, - "departure": { - "time": "1763603391" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603465" - }, - "departure": { - "time": "1763603465" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603497" - }, - "departure": { - "time": "1763603497" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603526" - }, - "departure": { - "time": "1763603526" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603556" - }, - "departure": { - "time": "1763603556" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603640" - }, - "departure": { - "time": "1763603640" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603660" - }, - "departure": { - "time": "1763603660" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763603680" - }, - "departure": { - "time": "1763603680" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763603715" - }, - "departure": { - "time": "1763603715" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763603802" - }, - "departure": { - "time": "1763603802" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763603903" - }, - "departure": { - "time": "1763603903" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763604018" - }, - "departure": { - "time": "1763604018" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763604054" - }, - "departure": { - "time": "1763604054" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763604112" - }, - "departure": { - "time": "1763604112" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763604152" - }, - "departure": { - "time": "1763604152" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763604209" - }, - "departure": { - "time": "1763604209" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763604276" - }, - "departure": { - "time": "1763604276" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763604341" - }, - "departure": { - "time": "1763604341" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763604367" - }, - "departure": { - "time": "1763604367" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763604391" - }, - "departure": { - "time": "1763604391" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763604425" - }, - "departure": { - "time": "1763604425" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763604456" - }, - "departure": { - "time": "1763604456" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763604492" - }, - "departure": { - "time": "1763604492" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763604559" - }, - "departure": { - "time": "1763604559" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763604600" - }, - "departure": { - "time": "1763604600" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763604708" - }, - "departure": { - "time": "1763604708" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763604759" - }, - "departure": { - "time": "1763604759" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763604822" - }, - "departure": { - "time": "1763604822" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763604873" - }, - "departure": { - "time": "1763604873" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763604976" - }, - "departure": { - "time": "1763604976" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763605066" - }, - "departure": { - "time": "1763605066" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763605098" - }, - "departure": { - "time": "1763605098" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763605140" - }, - "departure": { - "time": "1763605140" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763605224" - }, - "departure": { - "time": "1763605224" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763605421" - }, - "departure": { - "time": "1763605421" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763605476" - }, - "departure": { - "time": "1763605476" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763605620" - }, - "departure": { - "time": "1763605620" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "22003" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5528278_18009", - "tripUpdate": { - "trip": { - "tripId": "5528278", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 40, - "arrival": { - "time": "1763602994" - }, - "departure": { - "time": "1763602994" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763603065" - }, - "departure": { - "time": "1763603065" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603118" - }, - "departure": { - "time": "1763603118" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603175" - }, - "departure": { - "time": "1763603175" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603208" - }, - "departure": { - "time": "1763603208" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603310" - }, - "departure": { - "time": "1763603310" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603384" - }, - "departure": { - "time": "1763603384" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603485" - }, - "departure": { - "time": "1763603485" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "18009" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5530498_11018", - "tripUpdate": { - "trip": { - "tripId": "5530498", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 40, - "arrival": { - "time": "1763602946" - }, - "departure": { - "time": "1763602946" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 41, - "arrival": { - "time": "1763602970" - }, - "departure": { - "time": "1763602970" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603015" - }, - "departure": { - "time": "1763603015" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603063" - }, - "departure": { - "time": "1763603063" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603117" - }, - "departure": { - "time": "1763603117" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603149" - }, - "departure": { - "time": "1763603149" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603165" - }, - "departure": { - "time": "1763603165" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603211" - }, - "departure": { - "time": "1763603211" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603241" - }, - "departure": { - "time": "1763603241" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603295" - }, - "departure": { - "time": "1763603295" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603360" - }, - "departure": { - "time": "1763603360" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603403" - }, - "departure": { - "time": "1763603403" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603426" - }, - "departure": { - "time": "1763603426" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763603455" - }, - "departure": { - "time": "1763603455" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763603511" - }, - "departure": { - "time": "1763603511" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763603601" - }, - "departure": { - "time": "1763603601" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763603649" - }, - "departure": { - "time": "1763603649" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763603693" - }, - "departure": { - "time": "1763603693" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763603728" - }, - "departure": { - "time": "1763603728" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763603790" - }, - "departure": { - "time": "1763603790" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763603829" - }, - "departure": { - "time": "1763603829" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763603865" - }, - "departure": { - "time": "1763603865" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763603901" - }, - "departure": { - "time": "1763603901" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763603930" - }, - "departure": { - "time": "1763603930" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763603977" - }, - "departure": { - "time": "1763603977" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763603998" - }, - "departure": { - "time": "1763603998" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763604053" - }, - "departure": { - "time": "1763604053" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763604104" - }, - "departure": { - "time": "1763604104" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763604129" - }, - "departure": { - "time": "1763604129" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763604201" - }, - "departure": { - "time": "1763604201" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763604358" - }, - "departure": { - "time": "1763604358" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763604442" - }, - "departure": { - "time": "1763604442" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763604506" - }, - "departure": { - "time": "1763604506" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763604561" - }, - "departure": { - "time": "1763604561" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763604648" - }, - "departure": { - "time": "1763604648" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763604681" - }, - "departure": { - "time": "1763604681" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763604738" - }, - "departure": { - "time": "1763604738" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763604764" - }, - "departure": { - "time": "1763604764" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763604806" - }, - "departure": { - "time": "1763604806" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763604848" - }, - "departure": { - "time": "1763604848" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763604889" - }, - "departure": { - "time": "1763604889" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763604904" - }, - "departure": { - "time": "1763604904" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763604929" - }, - "departure": { - "time": "1763604929" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 83, - "arrival": { - "time": "1763605101" - }, - "departure": { - "time": "1763605101" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 84, - "arrival": { - "time": "1763605221" - }, - "departure": { - "time": "1763605221" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "11018" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5530017_07019", - "tripUpdate": { - "trip": { - "tripId": "5530017", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 41, - "arrival": { - "time": "1763602939" - }, - "departure": { - "time": "1763602939" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603015" - }, - "departure": { - "time": "1763603015" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603056" - }, - "departure": { - "time": "1763603056" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 44, - "arrival": { - "time": "1763603083" - }, - "departure": { - "time": "1763603083" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603118" - }, - "departure": { - "time": "1763603118" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603147" - }, - "departure": { - "time": "1763603147" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603172" - }, - "departure": { - "time": "1763603172" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603275" - }, - "departure": { - "time": "1763603275" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603301" - }, - "departure": { - "time": "1763603301" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603333" - }, - "departure": { - "time": "1763603333" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603357" - }, - "departure": { - "time": "1763603357" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603385" - }, - "departure": { - "time": "1763603385" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763603416" - }, - "departure": { - "time": "1763603416" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763603438" - }, - "departure": { - "time": "1763603438" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763603461" - }, - "departure": { - "time": "1763603461" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763603480" - }, - "departure": { - "time": "1763603480" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763603502" - }, - "departure": { - "time": "1763603502" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763603524" - }, - "departure": { - "time": "1763603524" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763603562" - }, - "departure": { - "time": "1763603562" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763603586" - }, - "departure": { - "time": "1763603586" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763603612" - }, - "departure": { - "time": "1763603612" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763603637" - }, - "departure": { - "time": "1763603637" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763603664" - }, - "departure": { - "time": "1763603664" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763603714" - }, - "departure": { - "time": "1763603714" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763603776" - }, - "departure": { - "time": "1763603776" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763603810" - }, - "departure": { - "time": "1763603810" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763603919" - }, - "departure": { - "time": "1763603919" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763603951" - }, - "departure": { - "time": "1763603951" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763604013" - }, - "departure": { - "time": "1763604013" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763604139" - }, - "departure": { - "time": "1763604139" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763604196" - }, - "departure": { - "time": "1763604196" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "07019" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5530143_11023", - "tripUpdate": { - "trip": { - "tripId": "5530143", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 41, - "arrival": { - "time": "1763603026" - }, - "departure": { - "time": "1763603026" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603060" - }, - "departure": { - "time": "1763603060" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603098" - }, - "departure": { - "time": "1763603098" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "11023" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5530218_17073", - "tripUpdate": { - "trip": { - "tripId": "5530218", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 41, - "arrival": { - "time": "1763603201" - }, - "departure": { - "time": "1763603201" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 42, - "arrival": { - "time": "1763603283" - }, - "departure": { - "time": "1763603283" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 43, - "arrival": { - "time": "1763603460" - }, - "departure": { - "time": "1763603460" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17073" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5524155_13005", - "tripUpdate": { - "trip": { - "tripId": "5524155", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 44, - "arrival": { - "time": "1763602972" - }, - "departure": { - "time": "1763602972" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603025" - }, - "departure": { - "time": "1763603025" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603161" - }, - "departure": { - "time": "1763603161" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603240" - }, - "departure": { - "time": "1763603240" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "13005" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5524237_12031", - "tripUpdate": { - "trip": { - "tripId": "5524237", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 44, - "arrival": { - "time": "1763603026" - }, - "departure": { - "time": "1763603026" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603160" - }, - "departure": { - "time": "1763603160" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "12031" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525045_19002", - "tripUpdate": { - "trip": { - "tripId": "5525045", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 44, - "arrival": { - "time": "1763603001" - }, - "departure": { - "time": "1763603001" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603020" - }, - "departure": { - "time": "1763603020" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603075" - }, - "departure": { - "time": "1763603075" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603110" - }, - "departure": { - "time": "1763603110" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603137" - }, - "departure": { - "time": "1763603137" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603182" - }, - "departure": { - "time": "1763603182" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603228" - }, - "departure": { - "time": "1763603228" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603256" - }, - "departure": { - "time": "1763603256" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603278" - }, - "departure": { - "time": "1763603278" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763603310" - }, - "departure": { - "time": "1763603310" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763603379" - }, - "departure": { - "time": "1763603379" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763603437" - }, - "departure": { - "time": "1763603437" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763603502" - }, - "departure": { - "time": "1763603502" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763603556" - }, - "departure": { - "time": "1763603556" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763603603" - }, - "departure": { - "time": "1763603603" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763603641" - }, - "departure": { - "time": "1763603641" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763603662" - }, - "departure": { - "time": "1763603662" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763603704" - }, - "departure": { - "time": "1763603704" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763603755" - }, - "departure": { - "time": "1763603755" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763603797" - }, - "departure": { - "time": "1763603797" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763603812" - }, - "departure": { - "time": "1763603812" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763603886" - }, - "departure": { - "time": "1763603886" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763603925" - }, - "departure": { - "time": "1763603925" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763603954" - }, - "departure": { - "time": "1763603954" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763603999" - }, - "departure": { - "time": "1763603999" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763604053" - }, - "departure": { - "time": "1763604053" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763604097" - }, - "departure": { - "time": "1763604097" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763604165" - }, - "departure": { - "time": "1763604165" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763604230" - }, - "departure": { - "time": "1763604230" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763604295" - }, - "departure": { - "time": "1763604295" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763604352" - }, - "departure": { - "time": "1763604352" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763604457" - }, - "departure": { - "time": "1763604457" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "19002" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5528310_20009", - "tripUpdate": { - "trip": { - "tripId": "5528310", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 44, - "arrival": { - "time": "1763602984" - }, - "departure": { - "time": "1763602984" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603055" - }, - "departure": { - "time": "1763603055" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603155" - }, - "departure": { - "time": "1763603155" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "20009" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5528582_12007", - "tripUpdate": { - "trip": { - "tripId": "5528582", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 44, - "arrival": { - "time": "1763602931" - }, - "departure": { - "time": "1763602931" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763602953" - }, - "departure": { - "time": "1763602953" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763602992" - }, - "departure": { - "time": "1763602992" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603015" - }, - "departure": { - "time": "1763603015" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603033" - }, - "departure": { - "time": "1763603033" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603066" - }, - "departure": { - "time": "1763603066" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603097" - }, - "departure": { - "time": "1763603097" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603134" - }, - "departure": { - "time": "1763603134" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603177" - }, - "departure": { - "time": "1763603177" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763603191" - }, - "departure": { - "time": "1763603191" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763603223" - }, - "departure": { - "time": "1763603223" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763603251" - }, - "departure": { - "time": "1763603251" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763603281" - }, - "departure": { - "time": "1763603281" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763603319" - }, - "departure": { - "time": "1763603319" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763603349" - }, - "departure": { - "time": "1763603349" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763603374" - }, - "departure": { - "time": "1763603374" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763603430" - }, - "departure": { - "time": "1763603430" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763603451" - }, - "departure": { - "time": "1763603451" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763603489" - }, - "departure": { - "time": "1763603489" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763603527" - }, - "departure": { - "time": "1763603527" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763603559" - }, - "departure": { - "time": "1763603559" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763603638" - }, - "departure": { - "time": "1763603638" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763603679" - }, - "departure": { - "time": "1763603679" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763603727" - }, - "departure": { - "time": "1763603727" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763603782" - }, - "departure": { - "time": "1763603782" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763603858" - }, - "departure": { - "time": "1763603858" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763603932" - }, - "departure": { - "time": "1763603932" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763603971" - }, - "departure": { - "time": "1763603971" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763604012" - }, - "departure": { - "time": "1763604012" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763604044" - }, - "departure": { - "time": "1763604044" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763604130" - }, - "departure": { - "time": "1763604130" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763604159" - }, - "departure": { - "time": "1763604159" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763604250" - }, - "departure": { - "time": "1763604250" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763604297" - }, - "departure": { - "time": "1763604297" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763604378" - }, - "departure": { - "time": "1763604378" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763604406" - }, - "departure": { - "time": "1763604406" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763604494" - }, - "departure": { - "time": "1763604494" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763604568" - }, - "departure": { - "time": "1763604568" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763604610" - }, - "departure": { - "time": "1763604610" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 83, - "arrival": { - "time": "1763604879" - }, - "departure": { - "time": "1763604879" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "12007" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5620506_22013", - "tripUpdate": { - "trip": { - "tripId": "5620506", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 44, - "arrival": { - "time": "1763602990" - }, - "departure": { - "time": "1763602990" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 45, - "arrival": { - "time": "1763603037" - }, - "departure": { - "time": "1763603037" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603061" - }, - "departure": { - "time": "1763603061" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603085" - }, - "departure": { - "time": "1763603085" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603109" - }, - "departure": { - "time": "1763603109" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603155" - }, - "departure": { - "time": "1763603155" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603201" - }, - "departure": { - "time": "1763603201" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603237" - }, - "departure": { - "time": "1763603237" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603288" - }, - "departure": { - "time": "1763603288" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763603425" - }, - "departure": { - "time": "1763603425" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763603493" - }, - "departure": { - "time": "1763603493" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763603547" - }, - "departure": { - "time": "1763603547" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763603770" - }, - "departure": { - "time": "1763603770" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763603870" - }, - "departure": { - "time": "1763603870" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763603919" - }, - "departure": { - "time": "1763603919" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763604041" - }, - "departure": { - "time": "1763604041" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "22013" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5524197_13041", - "tripUpdate": { - "trip": { - "tripId": "5524197", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 45, - "arrival": { - "time": "1763602260" - }, - "departure": { - "time": "1763602260" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "13041" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5526890_23026", - "tripUpdate": { - "trip": { - "tripId": "5526890", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 45, - "arrival": { - "time": "1763603030" - }, - "departure": { - "time": "1763603030" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 46, - "arrival": { - "time": "1763603088" - }, - "departure": { - "time": "1763603088" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763603180" - }, - "departure": { - "time": "1763603180" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603220" - }, - "departure": { - "time": "1763603220" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603261" - }, - "departure": { - "time": "1763603261" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603364" - }, - "departure": { - "time": "1763603364" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603406" - }, - "departure": { - "time": "1763603406" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603450" - }, - "departure": { - "time": "1763603450" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763603532" - }, - "departure": { - "time": "1763603532" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763603563" - }, - "departure": { - "time": "1763603563" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763603820" - }, - "departure": { - "time": "1763603820" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23026" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5530161_16005", - "tripUpdate": { - "trip": { - "tripId": "5530161", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 46, - "arrival": { - "time": "1763602151" - }, - "departure": { - "time": "1763602151" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763602188" - }, - "departure": { - "time": "1763602188" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "16005" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5530393_14007", - "tripUpdate": { - "trip": { - "tripId": "5530393", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 46, - "arrival": { - "time": "1763602920" - }, - "departure": { - "time": "1763602920" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 47, - "arrival": { - "time": "1763602960" - }, - "departure": { - "time": "1763602960" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763602996" - }, - "departure": { - "time": "1763602996" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603022" - }, - "departure": { - "time": "1763603022" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603068" - }, - "departure": { - "time": "1763603068" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603114" - }, - "departure": { - "time": "1763603114" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603143" - }, - "departure": { - "time": "1763603143" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763603169" - }, - "departure": { - "time": "1763603169" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763603218" - }, - "departure": { - "time": "1763603218" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763603350" - }, - "departure": { - "time": "1763603350" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763603375" - }, - "departure": { - "time": "1763603375" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763603397" - }, - "departure": { - "time": "1763603397" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763603436" - }, - "departure": { - "time": "1763603436" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763603464" - }, - "departure": { - "time": "1763603464" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763603511" - }, - "departure": { - "time": "1763603511" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763603582" - }, - "departure": { - "time": "1763603582" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763603749" - }, - "departure": { - "time": "1763603749" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763603809" - }, - "departure": { - "time": "1763603809" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763603841" - }, - "departure": { - "time": "1763603841" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763603872" - }, - "departure": { - "time": "1763603872" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763603896" - }, - "departure": { - "time": "1763603896" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763603916" - }, - "departure": { - "time": "1763603916" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763603943" - }, - "departure": { - "time": "1763603943" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763603972" - }, - "departure": { - "time": "1763603972" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763604002" - }, - "departure": { - "time": "1763604002" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763604024" - }, - "departure": { - "time": "1763604024" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763604043" - }, - "departure": { - "time": "1763604043" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763604060" - }, - "departure": { - "time": "1763604060" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763604096" - }, - "departure": { - "time": "1763604096" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763604130" - }, - "departure": { - "time": "1763604130" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763604144" - }, - "departure": { - "time": "1763604144" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763604163" - }, - "departure": { - "time": "1763604163" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763604184" - }, - "departure": { - "time": "1763604184" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763604203" - }, - "departure": { - "time": "1763604203" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763604223" - }, - "departure": { - "time": "1763604223" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763604254" - }, - "departure": { - "time": "1763604254" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763604272" - }, - "departure": { - "time": "1763604272" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 83, - "arrival": { - "time": "1763604301" - }, - "departure": { - "time": "1763604301" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 84, - "arrival": { - "time": "1763604318" - }, - "departure": { - "time": "1763604318" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 85, - "arrival": { - "time": "1763604336" - }, - "departure": { - "time": "1763604336" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "14007" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5534624_15004", - "tripUpdate": { - "trip": { - "tripId": "5534624", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 47, - "arrival": { - "time": "1763602959" - }, - "departure": { - "time": "1763602959" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603359" - }, - "departure": { - "time": "1763603359" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "15004" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5617915_09035", - "tripUpdate": { - "trip": { - "tripId": "5617915", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 47, - "arrival": { - "time": "1763602941" - }, - "departure": { - "time": "1763602941" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 48, - "arrival": { - "time": "1763603000" - }, - "departure": { - "time": "1763603000" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603056" - }, - "departure": { - "time": "1763603056" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603106" - }, - "departure": { - "time": "1763603106" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603133" - }, - "departure": { - "time": "1763603133" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603205" - }, - "departure": { - "time": "1763603205" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763603298" - }, - "departure": { - "time": "1763603298" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763603425" - }, - "departure": { - "time": "1763603425" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763603512" - }, - "departure": { - "time": "1763603512" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763603611" - }, - "departure": { - "time": "1763603611" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "09035" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5524846_23115", - "tripUpdate": { - "trip": { - "tripId": "5524846", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 48, - "arrival": { - "time": "1763603067" - }, - "departure": { - "time": "1763603067" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603145" - }, - "departure": { - "time": "1763603145" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603225" - }, - "departure": { - "time": "1763603225" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603416" - }, - "departure": { - "time": "1763603416" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603515" - }, - "departure": { - "time": "1763603515" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23115" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525266_13038", - "tripUpdate": { - "trip": { - "tripId": "5525266", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 48, - "arrival": { - "time": "1763603065" - }, - "departure": { - "time": "1763603065" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 49, - "arrival": { - "time": "1763603122" - }, - "departure": { - "time": "1763603122" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763603173" - }, - "departure": { - "time": "1763603173" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603238" - }, - "departure": { - "time": "1763603238" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603291" - }, - "departure": { - "time": "1763603291" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763603370" - }, - "departure": { - "time": "1763603370" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763603419" - }, - "departure": { - "time": "1763603419" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763603481" - }, - "departure": { - "time": "1763603481" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763603851" - }, - "departure": { - "time": "1763603851" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763603915" - }, - "departure": { - "time": "1763603915" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763604049" - }, - "departure": { - "time": "1763604049" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763604092" - }, - "departure": { - "time": "1763604092" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763604215" - }, - "departure": { - "time": "1763604215" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763604342" - }, - "departure": { - "time": "1763604342" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763604427" - }, - "departure": { - "time": "1763604427" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763604506" - }, - "departure": { - "time": "1763604506" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763604561" - }, - "departure": { - "time": "1763604561" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763604744" - }, - "departure": { - "time": "1763604744" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763605281" - }, - "departure": { - "time": "1763605281" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "13038" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5524845_24002", - "tripUpdate": { - "trip": { - "tripId": "5524845", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 49, - "arrival": { - "time": "1763602154" - }, - "departure": { - "time": "1763602154" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 50, - "arrival": { - "time": "1763602234" - }, - "departure": { - "time": "1763602234" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763602425" - }, - "departure": { - "time": "1763602425" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763602524" - }, - "departure": { - "time": "1763602524" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "24002" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5526957_23032", - "tripUpdate": { - "trip": { - "tripId": "5526957", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 50, - "arrival": { - "time": "1763603071" - }, - "departure": { - "time": "1763603071" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603200" - }, - "departure": { - "time": "1763603200" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603291" - }, - "departure": { - "time": "1763603291" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763603407" - }, - "departure": { - "time": "1763603407" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763603587" - }, - "departure": { - "time": "1763603587" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23032" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5527226_21023", - "tripUpdate": { - "trip": { - "tripId": "5527226", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 50, - "arrival": { - "time": "1763603000" - }, - "departure": { - "time": "1763603000" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 51, - "arrival": { - "time": "1763603062" - }, - "departure": { - "time": "1763603062" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763603102" - }, - "departure": { - "time": "1763603102" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763603131" - }, - "departure": { - "time": "1763603131" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763603181" - }, - "departure": { - "time": "1763603181" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763603220" - }, - "departure": { - "time": "1763603220" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763603580" - }, - "departure": { - "time": "1763603580" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "21023" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5527292_17057", - "tripUpdate": { - "trip": { - "tripId": "5527292", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 51, - "arrival": { - "time": "1763602926" - }, - "departure": { - "time": "1763602926" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 52, - "arrival": { - "time": "1763602954" - }, - "departure": { - "time": "1763602954" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763602996" - }, - "departure": { - "time": "1763602996" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763603025" - }, - "departure": { - "time": "1763603025" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763603263" - }, - "departure": { - "time": "1763603263" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763603336" - }, - "departure": { - "time": "1763603336" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763603442" - }, - "departure": { - "time": "1763603442" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763603472" - }, - "departure": { - "time": "1763603472" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763603526" - }, - "departure": { - "time": "1763603526" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763603565" - }, - "departure": { - "time": "1763603565" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17057" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5529990_16001", - "tripUpdate": { - "trip": { - "tripId": "5529990", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 52, - "arrival": { - "time": "1763602902" - }, - "departure": { - "time": "1763602902" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763602926" - }, - "departure": { - "time": "1763602926" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763602947" - }, - "departure": { - "time": "1763602947" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763602967" - }, - "departure": { - "time": "1763602967" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763602983" - }, - "departure": { - "time": "1763602983" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763602996" - }, - "departure": { - "time": "1763602996" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763603010" - }, - "departure": { - "time": "1763603010" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763603033" - }, - "departure": { - "time": "1763603033" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763603058" - }, - "departure": { - "time": "1763603058" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763603082" - }, - "departure": { - "time": "1763603082" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763603107" - }, - "departure": { - "time": "1763603107" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763603145" - }, - "departure": { - "time": "1763603145" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763603168" - }, - "departure": { - "time": "1763603168" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763603180" - }, - "departure": { - "time": "1763603180" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763603206" - }, - "departure": { - "time": "1763603206" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763603220" - }, - "departure": { - "time": "1763603220" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763603261" - }, - "departure": { - "time": "1763603261" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763603278" - }, - "departure": { - "time": "1763603278" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763603309" - }, - "departure": { - "time": "1763603309" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763603352" - }, - "departure": { - "time": "1763603352" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763603366" - }, - "departure": { - "time": "1763603366" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763603402" - }, - "departure": { - "time": "1763603402" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763603436" - }, - "departure": { - "time": "1763603436" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763603452" - }, - "departure": { - "time": "1763603452" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763603482" - }, - "departure": { - "time": "1763603482" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763603502" - }, - "departure": { - "time": "1763603502" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763603520" - }, - "departure": { - "time": "1763603520" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763603880" - }, - "departure": { - "time": "1763603880" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "16001" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5530561_11028", - "tripUpdate": { - "trip": { - "tripId": "5530561", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 52, - "arrival": { - "time": "1763601819" - }, - "departure": { - "time": "1763601819" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763601873" - }, - "departure": { - "time": "1763601873" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763601965" - }, - "departure": { - "time": "1763601965" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763602053" - }, - "departure": { - "time": "1763602053" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "11028" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5618233_21011", - "tripUpdate": { - "trip": { - "tripId": "5618233", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 52, - "arrival": { - "time": "1763602945" - }, - "departure": { - "time": "1763602945" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 53, - "arrival": { - "time": "1763602965" - }, - "departure": { - "time": "1763602965" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763603000" - }, - "departure": { - "time": "1763603000" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763603087" - }, - "departure": { - "time": "1763603087" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763603188" - }, - "departure": { - "time": "1763603188" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763603303" - }, - "departure": { - "time": "1763603303" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763603339" - }, - "departure": { - "time": "1763603339" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763603397" - }, - "departure": { - "time": "1763603397" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763603437" - }, - "departure": { - "time": "1763603437" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763603494" - }, - "departure": { - "time": "1763603494" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763603561" - }, - "departure": { - "time": "1763603561" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763603626" - }, - "departure": { - "time": "1763603626" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763603652" - }, - "departure": { - "time": "1763603652" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763603676" - }, - "departure": { - "time": "1763603676" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763603710" - }, - "departure": { - "time": "1763603710" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763603741" - }, - "departure": { - "time": "1763603741" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763603777" - }, - "departure": { - "time": "1763603777" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763603844" - }, - "departure": { - "time": "1763603844" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763603885" - }, - "departure": { - "time": "1763603885" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763603993" - }, - "departure": { - "time": "1763603993" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763604044" - }, - "departure": { - "time": "1763604044" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763604107" - }, - "departure": { - "time": "1763604107" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763604158" - }, - "departure": { - "time": "1763604158" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763604261" - }, - "departure": { - "time": "1763604261" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763604351" - }, - "departure": { - "time": "1763604351" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763604383" - }, - "departure": { - "time": "1763604383" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763604425" - }, - "departure": { - "time": "1763604425" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763604509" - }, - "departure": { - "time": "1763604509" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763604706" - }, - "departure": { - "time": "1763604706" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763604761" - }, - "departure": { - "time": "1763604761" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763604905" - }, - "departure": { - "time": "1763604905" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "21011" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525426_24007", - "tripUpdate": { - "trip": { - "tripId": "5525426", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 53, - "arrival": { - "time": "1763603100" - }, - "departure": { - "time": "1763603100" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763603155" - }, - "departure": { - "time": "1763603155" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763603185" - }, - "departure": { - "time": "1763603185" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763603211" - }, - "departure": { - "time": "1763603211" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763603270" - }, - "departure": { - "time": "1763603270" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763603293" - }, - "departure": { - "time": "1763603293" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763603340" - }, - "departure": { - "time": "1763603340" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763603383" - }, - "departure": { - "time": "1763603383" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763603430" - }, - "departure": { - "time": "1763603430" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763603467" - }, - "departure": { - "time": "1763603467" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763603507" - }, - "departure": { - "time": "1763603507" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763603541" - }, - "departure": { - "time": "1763603541" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763603580" - }, - "departure": { - "time": "1763603580" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763603612" - }, - "departure": { - "time": "1763603612" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763603659" - }, - "departure": { - "time": "1763603659" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763603677" - }, - "departure": { - "time": "1763603677" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763603783" - }, - "departure": { - "time": "1763603783" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763603830" - }, - "departure": { - "time": "1763603830" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763603888" - }, - "departure": { - "time": "1763603888" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763603914" - }, - "departure": { - "time": "1763603914" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763603951" - }, - "departure": { - "time": "1763603951" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763604000" - }, - "departure": { - "time": "1763604000" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763604046" - }, - "departure": { - "time": "1763604046" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763604084" - }, - "departure": { - "time": "1763604084" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763604103" - }, - "departure": { - "time": "1763604103" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763604127" - }, - "departure": { - "time": "1763604127" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763604149" - }, - "departure": { - "time": "1763604149" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763604176" - }, - "departure": { - "time": "1763604176" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763604214" - }, - "departure": { - "time": "1763604214" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763604245" - }, - "departure": { - "time": "1763604245" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 83, - "arrival": { - "time": "1763604269" - }, - "departure": { - "time": "1763604269" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 84, - "arrival": { - "time": "1763604295" - }, - "departure": { - "time": "1763604295" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 85, - "arrival": { - "time": "1763604309" - }, - "departure": { - "time": "1763604309" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 86, - "arrival": { - "time": "1763604346" - }, - "departure": { - "time": "1763604346" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 87, - "arrival": { - "time": "1763604372" - }, - "departure": { - "time": "1763604372" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 88, - "arrival": { - "time": "1763604394" - }, - "departure": { - "time": "1763604394" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 89, - "arrival": { - "time": "1763604429" - }, - "departure": { - "time": "1763604429" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 90, - "arrival": { - "time": "1763604484" - }, - "departure": { - "time": "1763604484" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 91, - "arrival": { - "time": "1763604520" - }, - "departure": { - "time": "1763604520" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 92, - "arrival": { - "time": "1763604541" - }, - "departure": { - "time": "1763604541" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 93, - "arrival": { - "time": "1763604600" - }, - "departure": { - "time": "1763604600" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "24007" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5530402_14005", - "tripUpdate": { - "trip": { - "tripId": "5530402", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 53, - "arrival": { - "time": "1763602989" - }, - "departure": { - "time": "1763602989" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 54, - "arrival": { - "time": "1763603040" - }, - "departure": { - "time": "1763603040" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763603098" - }, - "departure": { - "time": "1763603098" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763603115" - }, - "departure": { - "time": "1763603115" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763603152" - }, - "departure": { - "time": "1763603152" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763603200" - }, - "departure": { - "time": "1763603200" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763603225" - }, - "departure": { - "time": "1763603225" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763603241" - }, - "departure": { - "time": "1763603241" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763603267" - }, - "departure": { - "time": "1763603267" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763603341" - }, - "departure": { - "time": "1763603341" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763603386" - }, - "departure": { - "time": "1763603386" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763603417" - }, - "departure": { - "time": "1763603417" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763603467" - }, - "departure": { - "time": "1763603467" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763603512" - }, - "departure": { - "time": "1763603512" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763603539" - }, - "departure": { - "time": "1763603539" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763603571" - }, - "departure": { - "time": "1763603571" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763603609" - }, - "departure": { - "time": "1763603609" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763603654" - }, - "departure": { - "time": "1763603654" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763603680" - }, - "departure": { - "time": "1763603680" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763603727" - }, - "departure": { - "time": "1763603727" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763603754" - }, - "departure": { - "time": "1763603754" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763603791" - }, - "departure": { - "time": "1763603791" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763603814" - }, - "departure": { - "time": "1763603814" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763603872" - }, - "departure": { - "time": "1763603872" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763603917" - }, - "departure": { - "time": "1763603917" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763603992" - }, - "departure": { - "time": "1763603992" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763604112" - }, - "departure": { - "time": "1763604112" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "14005" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5534664_21082", - "tripUpdate": { - "trip": { - "tripId": "5534664", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 54, - "arrival": { - "time": "1763603042" - }, - "departure": { - "time": "1763603042" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 55, - "arrival": { - "time": "1763603186" - }, - "departure": { - "time": "1763603186" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763603222" - }, - "departure": { - "time": "1763603222" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763603274" - }, - "departure": { - "time": "1763603274" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763603362" - }, - "departure": { - "time": "1763603362" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763603434" - }, - "departure": { - "time": "1763603434" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763603462" - }, - "departure": { - "time": "1763603462" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763603511" - }, - "departure": { - "time": "1763603511" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763603539" - }, - "departure": { - "time": "1763603539" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763603558" - }, - "departure": { - "time": "1763603558" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763603571" - }, - "departure": { - "time": "1763603571" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763603589" - }, - "departure": { - "time": "1763603589" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763603610" - }, - "departure": { - "time": "1763603610" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763603627" - }, - "departure": { - "time": "1763603627" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763603657" - }, - "departure": { - "time": "1763603657" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763603683" - }, - "departure": { - "time": "1763603683" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763603709" - }, - "departure": { - "time": "1763603709" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763603737" - }, - "departure": { - "time": "1763603737" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763603776" - }, - "departure": { - "time": "1763603776" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763603817" - }, - "departure": { - "time": "1763603817" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763603842" - }, - "departure": { - "time": "1763603842" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763603856" - }, - "departure": { - "time": "1763603856" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763603879" - }, - "departure": { - "time": "1763603879" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763603906" - }, - "departure": { - "time": "1763603906" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763603944" - }, - "departure": { - "time": "1763603944" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763603958" - }, - "departure": { - "time": "1763603958" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763604002" - }, - "departure": { - "time": "1763604002" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763604035" - }, - "departure": { - "time": "1763604035" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763604081" - }, - "departure": { - "time": "1763604081" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 83, - "arrival": { - "time": "1763604104" - }, - "departure": { - "time": "1763604104" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 84, - "arrival": { - "time": "1763604138" - }, - "departure": { - "time": "1763604138" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 85, - "arrival": { - "time": "1763604156" - }, - "departure": { - "time": "1763604156" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 86, - "arrival": { - "time": "1763604195" - }, - "departure": { - "time": "1763604195" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 87, - "arrival": { - "time": "1763604234" - }, - "departure": { - "time": "1763604234" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 88, - "arrival": { - "time": "1763604280" - }, - "departure": { - "time": "1763604280" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 89, - "arrival": { - "time": "1763604306" - }, - "departure": { - "time": "1763604306" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 90, - "arrival": { - "time": "1763604322" - }, - "departure": { - "time": "1763604322" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 91, - "arrival": { - "time": "1763604341" - }, - "departure": { - "time": "1763604341" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 92, - "arrival": { - "time": "1763604360" - }, - "departure": { - "time": "1763604360" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 93, - "arrival": { - "time": "1763604397" - }, - "departure": { - "time": "1763604397" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 94, - "arrival": { - "time": "1763604431" - }, - "departure": { - "time": "1763604431" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 95, - "arrival": { - "time": "1763604466" - }, - "departure": { - "time": "1763604466" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 96, - "arrival": { - "time": "1763604502" - }, - "departure": { - "time": "1763604502" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 97, - "arrival": { - "time": "1763604529" - }, - "departure": { - "time": "1763604529" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 98, - "arrival": { - "time": "1763604554" - }, - "departure": { - "time": "1763604554" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 99, - "arrival": { - "time": "1763604602" - }, - "departure": { - "time": "1763604602" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 100, - "arrival": { - "time": "1763604620" - }, - "departure": { - "time": "1763604620" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 101, - "arrival": { - "time": "1763604649" - }, - "departure": { - "time": "1763604649" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 102, - "arrival": { - "time": "1763604679" - }, - "departure": { - "time": "1763604679" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 103, - "arrival": { - "time": "1763604696" - }, - "departure": { - "time": "1763604696" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 104, - "arrival": { - "time": "1763604722" - }, - "departure": { - "time": "1763604722" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 105, - "arrival": { - "time": "1763604745" - }, - "departure": { - "time": "1763604745" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 106, - "arrival": { - "time": "1763604787" - }, - "departure": { - "time": "1763604787" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 107, - "arrival": { - "time": "1763604817" - }, - "departure": { - "time": "1763604817" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 108, - "arrival": { - "time": "1763604840" - }, - "departure": { - "time": "1763604840" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 109, - "arrival": { - "time": "1763604885" - }, - "departure": { - "time": "1763604885" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 110, - "arrival": { - "time": "1763604912" - }, - "departure": { - "time": "1763604912" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 111, - "arrival": { - "time": "1763604952" - }, - "departure": { - "time": "1763604952" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 112, - "arrival": { - "time": "1763604968" - }, - "departure": { - "time": "1763604968" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 113, - "arrival": { - "time": "1763605022" - }, - "departure": { - "time": "1763605022" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 114, - "arrival": { - "time": "1763605055" - }, - "departure": { - "time": "1763605055" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 115, - "arrival": { - "time": "1763605064" - }, - "departure": { - "time": "1763605064" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 116, - "arrival": { - "time": "1763605084" - }, - "departure": { - "time": "1763605084" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 117, - "arrival": { - "time": "1763605101" - }, - "departure": { - "time": "1763605101" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 118, - "arrival": { - "time": "1763605116" - }, - "departure": { - "time": "1763605116" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 119, - "arrival": { - "time": "1763605137" - }, - "departure": { - "time": "1763605137" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 120, - "arrival": { - "time": "1763605154" - }, - "departure": { - "time": "1763605154" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 121, - "arrival": { - "time": "1763605164" - }, - "departure": { - "time": "1763605164" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 122, - "arrival": { - "time": "1763605171" - }, - "departure": { - "time": "1763605171" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 123, - "arrival": { - "time": "1763605178" - }, - "departure": { - "time": "1763605178" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 124, - "arrival": { - "time": "1763605211" - }, - "departure": { - "time": "1763605211" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 125, - "arrival": { - "time": "1763605220" - }, - "departure": { - "time": "1763605220" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 126, - "arrival": { - "time": "1763605238" - }, - "departure": { - "time": "1763605238" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 127, - "arrival": { - "time": "1763605471" - }, - "departure": { - "time": "1763605471" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 128, - "arrival": { - "time": "1763605528" - }, - "departure": { - "time": "1763605528" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 129, - "arrival": { - "time": "1763605598" - }, - "departure": { - "time": "1763605598" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 130, - "arrival": { - "time": "1763605622" - }, - "departure": { - "time": "1763605622" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 131, - "arrival": { - "time": "1763605651" - }, - "departure": { - "time": "1763605651" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 132, - "arrival": { - "time": "1763605677" - }, - "departure": { - "time": "1763605677" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 133, - "arrival": { - "time": "1763605702" - }, - "departure": { - "time": "1763605702" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 134, - "arrival": { - "time": "1763605728" - }, - "departure": { - "time": "1763605728" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 135, - "arrival": { - "time": "1763605753" - }, - "departure": { - "time": "1763605753" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 136, - "arrival": { - "time": "1763605785" - }, - "departure": { - "time": "1763605785" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 137, - "arrival": { - "time": "1763605845" - }, - "departure": { - "time": "1763605845" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 138, - "arrival": { - "time": "1763605874" - }, - "departure": { - "time": "1763605874" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 139, - "arrival": { - "time": "1763605922" - }, - "departure": { - "time": "1763605922" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 140, - "arrival": { - "time": "1763606004" - }, - "departure": { - "time": "1763606004" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 141, - "arrival": { - "time": "1763606079" - }, - "departure": { - "time": "1763606079" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 142, - "arrival": { - "time": "1763606162" - }, - "departure": { - "time": "1763606162" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 143, - "arrival": { - "time": "1763606208" - }, - "departure": { - "time": "1763606208" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 144, - "arrival": { - "time": "1763606342" - }, - "departure": { - "time": "1763606342" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 145, - "arrival": { - "time": "1763606444" - }, - "departure": { - "time": "1763606444" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 146, - "arrival": { - "time": "1763606535" - }, - "departure": { - "time": "1763606535" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 147, - "arrival": { - "time": "1763606605" - }, - "departure": { - "time": "1763606605" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 148, - "arrival": { - "time": "1763606750" - }, - "departure": { - "time": "1763606750" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 149, - "arrival": { - "time": "1763606924" - }, - "departure": { - "time": "1763606924" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 150, - "arrival": { - "time": "1763607119" - }, - "departure": { - "time": "1763607119" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 151, - "arrival": { - "time": "1763607182" - }, - "departure": { - "time": "1763607182" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 152, - "arrival": { - "time": "1763607276" - }, - "departure": { - "time": "1763607276" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 153, - "arrival": { - "time": "1763607380" - }, - "departure": { - "time": "1763607380" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 154, - "arrival": { - "time": "1763607445" - }, - "departure": { - "time": "1763607445" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 155, - "arrival": { - "time": "1763607522" - }, - "departure": { - "time": "1763607522" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 156, - "arrival": { - "time": "1763607567" - }, - "departure": { - "time": "1763607567" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 157, - "arrival": { - "time": "1763607749" - }, - "departure": { - "time": "1763607749" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 158, - "arrival": { - "time": "1763607782" - }, - "departure": { - "time": "1763607782" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 159, - "arrival": { - "time": "1763607797" - }, - "departure": { - "time": "1763607797" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 160, - "arrival": { - "time": "1763607844" - }, - "departure": { - "time": "1763607844" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 161, - "arrival": { - "time": "1763607871" - }, - "departure": { - "time": "1763607871" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 162, - "arrival": { - "time": "1763607887" - }, - "departure": { - "time": "1763607887" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 163, - "arrival": { - "time": "1763607902" - }, - "departure": { - "time": "1763607902" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 164, - "arrival": { - "time": "1763607934" - }, - "departure": { - "time": "1763607934" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 165, - "arrival": { - "time": "1763608022" - }, - "departure": { - "time": "1763608022" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "21082" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5526256_15015", - "tripUpdate": { - "trip": { - "tripId": "5526256", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 55, - "arrival": { - "time": "1763602924" - }, - "departure": { - "time": "1763602924" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763602959" - }, - "departure": { - "time": "1763602959" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763602988" - }, - "departure": { - "time": "1763602988" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763603038" - }, - "departure": { - "time": "1763603038" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763603105" - }, - "departure": { - "time": "1763603105" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763603315" - }, - "departure": { - "time": "1763603315" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763603404" - }, - "departure": { - "time": "1763603404" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763603518" - }, - "departure": { - "time": "1763603518" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "15015" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5528614_18004", - "tripUpdate": { - "trip": { - "tripId": "5528614", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 55, - "arrival": { - "time": "1763602947" - }, - "departure": { - "time": "1763602947" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763603021" - }, - "departure": { - "time": "1763603021" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763603102" - }, - "departure": { - "time": "1763603102" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763603187" - }, - "departure": { - "time": "1763603187" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763603236" - }, - "departure": { - "time": "1763603236" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763603263" - }, - "departure": { - "time": "1763603263" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763603303" - }, - "departure": { - "time": "1763603303" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763603323" - }, - "departure": { - "time": "1763603323" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763603363" - }, - "departure": { - "time": "1763603363" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763603387" - }, - "departure": { - "time": "1763603387" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763603411" - }, - "departure": { - "time": "1763603411" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763603449" - }, - "departure": { - "time": "1763603449" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763603483" - }, - "departure": { - "time": "1763603483" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763603547" - }, - "departure": { - "time": "1763603547" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763603648" - }, - "departure": { - "time": "1763603648" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763603729" - }, - "departure": { - "time": "1763603729" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763603795" - }, - "departure": { - "time": "1763603795" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763603847" - }, - "departure": { - "time": "1763603847" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763603916" - }, - "departure": { - "time": "1763603916" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763603992" - }, - "departure": { - "time": "1763603992" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763604040" - }, - "departure": { - "time": "1763604040" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763604098" - }, - "departure": { - "time": "1763604098" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763604205" - }, - "departure": { - "time": "1763604205" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763604241" - }, - "departure": { - "time": "1763604241" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763604278" - }, - "departure": { - "time": "1763604278" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763604323" - }, - "departure": { - "time": "1763604323" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763604437" - }, - "departure": { - "time": "1763604437" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763604507" - }, - "departure": { - "time": "1763604507" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "18004" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5620474_22015", - "tripUpdate": { - "trip": { - "tripId": "5620474", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 55, - "arrival": { - "time": "1763602921" - }, - "departure": { - "time": "1763602921" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 56, - "arrival": { - "time": "1763602937" - }, - "departure": { - "time": "1763602937" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 57, - "arrival": { - "time": "1763602995" - }, - "departure": { - "time": "1763602995" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763603032" - }, - "departure": { - "time": "1763603032" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763603117" - }, - "departure": { - "time": "1763603117" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "22015" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525078_10007", - "tripUpdate": { - "trip": { - "tripId": "5525078", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 57, - "arrival": { - "time": "1763602936" - }, - "departure": { - "time": "1763602936" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 58, - "arrival": { - "time": "1763602975" - }, - "departure": { - "time": "1763602975" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763603036" - }, - "departure": { - "time": "1763603036" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763603071" - }, - "departure": { - "time": "1763603071" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763603123" - }, - "departure": { - "time": "1763603123" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763603176" - }, - "departure": { - "time": "1763603176" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763603219" - }, - "departure": { - "time": "1763603219" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763603271" - }, - "departure": { - "time": "1763603271" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763603298" - }, - "departure": { - "time": "1763603298" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763603337" - }, - "departure": { - "time": "1763603337" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763603375" - }, - "departure": { - "time": "1763603375" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763603415" - }, - "departure": { - "time": "1763603415" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763603476" - }, - "departure": { - "time": "1763603476" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763603539" - }, - "departure": { - "time": "1763603539" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763603595" - }, - "departure": { - "time": "1763603595" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763603685" - }, - "departure": { - "time": "1763603685" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763603836" - }, - "departure": { - "time": "1763603836" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "10007" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5618174_22006", - "tripUpdate": { - "trip": { - "tripId": "5618174", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 58, - "arrival": { - "time": "1763603190" - }, - "departure": { - "time": "1763603190" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 59, - "arrival": { - "time": "1763603227" - }, - "departure": { - "time": "1763603227" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763603340" - }, - "departure": { - "time": "1763603340" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763603419" - }, - "departure": { - "time": "1763603419" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763603471" - }, - "departure": { - "time": "1763603471" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763603510" - }, - "departure": { - "time": "1763603510" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763603544" - }, - "departure": { - "time": "1763603544" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763603586" - }, - "departure": { - "time": "1763603586" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763603639" - }, - "departure": { - "time": "1763603639" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763603692" - }, - "departure": { - "time": "1763603692" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763603747" - }, - "departure": { - "time": "1763603747" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763603806" - }, - "departure": { - "time": "1763603806" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763603880" - }, - "departure": { - "time": "1763603880" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763603918" - }, - "departure": { - "time": "1763603918" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763603961" - }, - "departure": { - "time": "1763603961" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763604007" - }, - "departure": { - "time": "1763604007" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763604096" - }, - "departure": { - "time": "1763604096" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763604150" - }, - "departure": { - "time": "1763604150" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763604210" - }, - "departure": { - "time": "1763604210" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763604269" - }, - "departure": { - "time": "1763604269" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763604324" - }, - "departure": { - "time": "1763604324" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763604390" - }, - "departure": { - "time": "1763604390" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763604480" - }, - "departure": { - "time": "1763604480" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763604633" - }, - "departure": { - "time": "1763604633" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763604780" - }, - "departure": { - "time": "1763604780" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "22006" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525494_15005", - "tripUpdate": { - "trip": { - "tripId": "5525494", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 59, - "arrival": { - "time": "1763602937" - }, - "departure": { - "time": "1763602937" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763602959" - }, - "departure": { - "time": "1763602959" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763602978" - }, - "departure": { - "time": "1763602978" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763602997" - }, - "departure": { - "time": "1763602997" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763603014" - }, - "departure": { - "time": "1763603014" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763603036" - }, - "departure": { - "time": "1763603036" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763603071" - }, - "departure": { - "time": "1763603071" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763603126" - }, - "departure": { - "time": "1763603126" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763603181" - }, - "departure": { - "time": "1763603181" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763603237" - }, - "departure": { - "time": "1763603237" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763603311" - }, - "departure": { - "time": "1763603311" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763603349" - }, - "departure": { - "time": "1763603349" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763603374" - }, - "departure": { - "time": "1763603374" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763603430" - }, - "departure": { - "time": "1763603430" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763603475" - }, - "departure": { - "time": "1763603475" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763603551" - }, - "departure": { - "time": "1763603551" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763603618" - }, - "departure": { - "time": "1763603618" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763603693" - }, - "departure": { - "time": "1763603693" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763603776" - }, - "departure": { - "time": "1763603776" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763603826" - }, - "departure": { - "time": "1763603826" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763603868" - }, - "departure": { - "time": "1763603868" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763603911" - }, - "departure": { - "time": "1763603911" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763603940" - }, - "departure": { - "time": "1763603940" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763604043" - }, - "departure": { - "time": "1763604043" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 83, - "arrival": { - "time": "1763604094" - }, - "departure": { - "time": "1763604094" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 84, - "arrival": { - "time": "1763604151" - }, - "departure": { - "time": "1763604151" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 85, - "arrival": { - "time": "1763604193" - }, - "departure": { - "time": "1763604193" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 86, - "arrival": { - "time": "1763604217" - }, - "departure": { - "time": "1763604217" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 87, - "arrival": { - "time": "1763604294" - }, - "departure": { - "time": "1763604294" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 88, - "arrival": { - "time": "1763604332" - }, - "departure": { - "time": "1763604332" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 89, - "arrival": { - "time": "1763604391" - }, - "departure": { - "time": "1763604391" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 90, - "arrival": { - "time": "1763604443" - }, - "departure": { - "time": "1763604443" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 91, - "arrival": { - "time": "1763604489" - }, - "departure": { - "time": "1763604489" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 92, - "arrival": { - "time": "1763604563" - }, - "departure": { - "time": "1763604563" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 93, - "arrival": { - "time": "1763604751" - }, - "departure": { - "time": "1763604751" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "15005" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5527293_23019", - "tripUpdate": { - "trip": { - "tripId": "5527293", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 59, - "arrival": { - "time": "1763602595" - }, - "departure": { - "time": "1763602595" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 60, - "arrival": { - "time": "1763602637" - }, - "departure": { - "time": "1763602637" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23019" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525495_24010", - "tripUpdate": { - "trip": { - "tripId": "5525495", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 60, - "arrival": { - "time": "1763602898" - }, - "departure": { - "time": "1763602898" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763602917" - }, - "departure": { - "time": "1763602917" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763602936" - }, - "departure": { - "time": "1763602936" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763602953" - }, - "departure": { - "time": "1763602953" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763602975" - }, - "departure": { - "time": "1763602975" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763603010" - }, - "departure": { - "time": "1763603010" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763603065" - }, - "departure": { - "time": "1763603065" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763603120" - }, - "departure": { - "time": "1763603120" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763603176" - }, - "departure": { - "time": "1763603176" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763603250" - }, - "departure": { - "time": "1763603250" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763603288" - }, - "departure": { - "time": "1763603288" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763603313" - }, - "departure": { - "time": "1763603313" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763603369" - }, - "departure": { - "time": "1763603369" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763603414" - }, - "departure": { - "time": "1763603414" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763603490" - }, - "departure": { - "time": "1763603490" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763603557" - }, - "departure": { - "time": "1763603557" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763603632" - }, - "departure": { - "time": "1763603632" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763603715" - }, - "departure": { - "time": "1763603715" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763603765" - }, - "departure": { - "time": "1763603765" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763603807" - }, - "departure": { - "time": "1763603807" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763603850" - }, - "departure": { - "time": "1763603850" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763603879" - }, - "departure": { - "time": "1763603879" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763603982" - }, - "departure": { - "time": "1763603982" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 83, - "arrival": { - "time": "1763604033" - }, - "departure": { - "time": "1763604033" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 84, - "arrival": { - "time": "1763604090" - }, - "departure": { - "time": "1763604090" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 85, - "arrival": { - "time": "1763604132" - }, - "departure": { - "time": "1763604132" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 86, - "arrival": { - "time": "1763604156" - }, - "departure": { - "time": "1763604156" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 87, - "arrival": { - "time": "1763604233" - }, - "departure": { - "time": "1763604233" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 88, - "arrival": { - "time": "1763604271" - }, - "departure": { - "time": "1763604271" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 89, - "arrival": { - "time": "1763604330" - }, - "departure": { - "time": "1763604330" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 90, - "arrival": { - "time": "1763604382" - }, - "departure": { - "time": "1763604382" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 91, - "arrival": { - "time": "1763604428" - }, - "departure": { - "time": "1763604428" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 92, - "arrival": { - "time": "1763604502" - }, - "departure": { - "time": "1763604502" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 93, - "arrival": { - "time": "1763604690" - }, - "departure": { - "time": "1763604690" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "24010" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5527996_23016", - "tripUpdate": { - "trip": { - "tripId": "5527996", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 60, - "arrival": { - "time": "1763602996" - }, - "departure": { - "time": "1763602996" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763603069" - }, - "departure": { - "time": "1763603069" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763603139" - }, - "departure": { - "time": "1763603139" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763603201" - }, - "departure": { - "time": "1763603201" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763603248" - }, - "departure": { - "time": "1763603248" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763603280" - }, - "departure": { - "time": "1763603280" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763603384" - }, - "departure": { - "time": "1763603384" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763603433" - }, - "departure": { - "time": "1763603433" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763603461" - }, - "departure": { - "time": "1763603461" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763603618" - }, - "departure": { - "time": "1763603618" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23016" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5530050_14010", - "tripUpdate": { - "trip": { - "tripId": "5530050", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 60, - "arrival": { - "time": "1763602939" - }, - "departure": { - "time": "1763602939" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 61, - "arrival": { - "time": "1763602965" - }, - "departure": { - "time": "1763602965" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 62, - "arrival": { - "time": "1763602990" - }, - "departure": { - "time": "1763602990" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763603017" - }, - "departure": { - "time": "1763603017" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763603067" - }, - "departure": { - "time": "1763603067" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763603129" - }, - "departure": { - "time": "1763603129" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763603163" - }, - "departure": { - "time": "1763603163" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763603272" - }, - "departure": { - "time": "1763603272" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763603304" - }, - "departure": { - "time": "1763603304" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763603366" - }, - "departure": { - "time": "1763603366" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763603492" - }, - "departure": { - "time": "1763603492" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763603549" - }, - "departure": { - "time": "1763603549" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "14010" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5618169_21010", - "tripUpdate": { - "trip": { - "tripId": "5618169", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 62, - "arrival": { - "time": "1763602849" - }, - "departure": { - "time": "1763602849" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 63, - "arrival": { - "time": "1763602888" - }, - "departure": { - "time": "1763602888" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763602922" - }, - "departure": { - "time": "1763602922" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763602964" - }, - "departure": { - "time": "1763602964" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763603017" - }, - "departure": { - "time": "1763603017" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763603070" - }, - "departure": { - "time": "1763603070" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763603125" - }, - "departure": { - "time": "1763603125" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763603184" - }, - "departure": { - "time": "1763603184" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763603258" - }, - "departure": { - "time": "1763603258" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763603296" - }, - "departure": { - "time": "1763603296" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763603339" - }, - "departure": { - "time": "1763603339" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763603385" - }, - "departure": { - "time": "1763603385" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763603474" - }, - "departure": { - "time": "1763603474" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763603528" - }, - "departure": { - "time": "1763603528" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763603588" - }, - "departure": { - "time": "1763603588" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763603647" - }, - "departure": { - "time": "1763603647" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763603702" - }, - "departure": { - "time": "1763603702" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763603768" - }, - "departure": { - "time": "1763603768" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763603858" - }, - "departure": { - "time": "1763603858" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763604011" - }, - "departure": { - "time": "1763604011" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763604158" - }, - "departure": { - "time": "1763604158" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "21010" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5530466_11010", - "tripUpdate": { - "trip": { - "tripId": "5530466", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 63, - "arrival": { - "time": "1763603574" - }, - "departure": { - "time": "1763603574" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 64, - "arrival": { - "time": "1763603629" - }, - "departure": { - "time": "1763603629" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763603699" - }, - "departure": { - "time": "1763603699" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763603730" - }, - "departure": { - "time": "1763603730" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763603760" - }, - "departure": { - "time": "1763603760" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763604030" - }, - "departure": { - "time": "1763604030" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763604112" - }, - "departure": { - "time": "1763604112" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763604183" - }, - "departure": { - "time": "1763604183" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763604300" - }, - "departure": { - "time": "1763604300" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763604352" - }, - "departure": { - "time": "1763604352" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763604397" - }, - "departure": { - "time": "1763604397" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763604488" - }, - "departure": { - "time": "1763604488" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763604501" - }, - "departure": { - "time": "1763604501" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763604523" - }, - "departure": { - "time": "1763604523" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763604543" - }, - "departure": { - "time": "1763604543" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763604609" - }, - "departure": { - "time": "1763604609" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763604643" - }, - "departure": { - "time": "1763604643" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763604694" - }, - "departure": { - "time": "1763604694" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763604745" - }, - "departure": { - "time": "1763604745" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763604780" - }, - "departure": { - "time": "1763604780" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "11010" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5618236_22010", - "tripUpdate": { - "trip": { - "tripId": "5618236", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 64, - "arrival": { - "time": "1763602860" - }, - "departure": { - "time": "1763602860" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 65, - "arrival": { - "time": "1763602884" - }, - "departure": { - "time": "1763602884" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 66, - "arrival": { - "time": "1763602918" - }, - "departure": { - "time": "1763602918" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 67, - "arrival": { - "time": "1763602949" - }, - "departure": { - "time": "1763602949" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763602985" - }, - "departure": { - "time": "1763602985" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763603052" - }, - "departure": { - "time": "1763603052" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763603093" - }, - "departure": { - "time": "1763603093" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763603201" - }, - "departure": { - "time": "1763603201" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763603252" - }, - "departure": { - "time": "1763603252" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763603315" - }, - "departure": { - "time": "1763603315" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763603366" - }, - "departure": { - "time": "1763603366" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763603469" - }, - "departure": { - "time": "1763603469" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763603559" - }, - "departure": { - "time": "1763603559" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763603591" - }, - "departure": { - "time": "1763603591" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763603633" - }, - "departure": { - "time": "1763603633" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763603717" - }, - "departure": { - "time": "1763603717" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763603914" - }, - "departure": { - "time": "1763603914" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763603969" - }, - "departure": { - "time": "1763603969" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763604113" - }, - "departure": { - "time": "1763604113" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "22010" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525265_13002", - "tripUpdate": { - "trip": { - "tripId": "5525265", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 66, - "arrival": { - "time": "1763603416" - }, - "departure": { - "time": "1763603416" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "13002" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5618232_22002", - "tripUpdate": { - "trip": { - "tripId": "5618232", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 67, - "arrival": { - "time": "1763602901" - }, - "departure": { - "time": "1763602901" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 68, - "arrival": { - "time": "1763602937" - }, - "departure": { - "time": "1763602937" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763603004" - }, - "departure": { - "time": "1763603004" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763603045" - }, - "departure": { - "time": "1763603045" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763603153" - }, - "departure": { - "time": "1763603153" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763603204" - }, - "departure": { - "time": "1763603204" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763603267" - }, - "departure": { - "time": "1763603267" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763603318" - }, - "departure": { - "time": "1763603318" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763603421" - }, - "departure": { - "time": "1763603421" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763603511" - }, - "departure": { - "time": "1763603511" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763603543" - }, - "departure": { - "time": "1763603543" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763603585" - }, - "departure": { - "time": "1763603585" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763603669" - }, - "departure": { - "time": "1763603669" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763603866" - }, - "departure": { - "time": "1763603866" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763603921" - }, - "departure": { - "time": "1763603921" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763604065" - }, - "departure": { - "time": "1763604065" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "22002" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5529957_14014", - "tripUpdate": { - "trip": { - "tripId": "5529957", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 68, - "arrival": { - "time": "1763602601" - }, - "departure": { - "time": "1763602601" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 69, - "arrival": { - "time": "1763602618" - }, - "departure": { - "time": "1763602618" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763602649" - }, - "departure": { - "time": "1763602649" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763602692" - }, - "departure": { - "time": "1763602692" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763602706" - }, - "departure": { - "time": "1763602706" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763602742" - }, - "departure": { - "time": "1763602742" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763602776" - }, - "departure": { - "time": "1763602776" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763602792" - }, - "departure": { - "time": "1763602792" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763602822" - }, - "departure": { - "time": "1763602822" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763602842" - }, - "departure": { - "time": "1763602842" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763602860" - }, - "departure": { - "time": "1763602860" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763603220" - }, - "departure": { - "time": "1763603220" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "14014" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525425_23102", - "tripUpdate": { - "trip": { - "tripId": "5525425", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 69, - "arrival": { - "time": "1763602939" - }, - "departure": { - "time": "1763602939" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 70, - "arrival": { - "time": "1763602986" - }, - "departure": { - "time": "1763602986" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 71, - "arrival": { - "time": "1763603044" - }, - "departure": { - "time": "1763603044" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763603070" - }, - "departure": { - "time": "1763603070" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763603107" - }, - "departure": { - "time": "1763603107" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763603156" - }, - "departure": { - "time": "1763603156" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763603202" - }, - "departure": { - "time": "1763603202" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763603240" - }, - "departure": { - "time": "1763603240" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763603259" - }, - "departure": { - "time": "1763603259" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763603283" - }, - "departure": { - "time": "1763603283" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763603305" - }, - "departure": { - "time": "1763603305" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763603332" - }, - "departure": { - "time": "1763603332" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763603370" - }, - "departure": { - "time": "1763603370" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763603401" - }, - "departure": { - "time": "1763603401" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 83, - "arrival": { - "time": "1763603425" - }, - "departure": { - "time": "1763603425" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 84, - "arrival": { - "time": "1763603451" - }, - "departure": { - "time": "1763603451" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 85, - "arrival": { - "time": "1763603465" - }, - "departure": { - "time": "1763603465" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 86, - "arrival": { - "time": "1763603502" - }, - "departure": { - "time": "1763603502" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 87, - "arrival": { - "time": "1763603528" - }, - "departure": { - "time": "1763603528" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 88, - "arrival": { - "time": "1763603550" - }, - "departure": { - "time": "1763603550" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 89, - "arrival": { - "time": "1763603585" - }, - "departure": { - "time": "1763603585" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 90, - "arrival": { - "time": "1763603640" - }, - "departure": { - "time": "1763603640" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 91, - "arrival": { - "time": "1763603676" - }, - "departure": { - "time": "1763603676" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 92, - "arrival": { - "time": "1763603697" - }, - "departure": { - "time": "1763603697" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 93, - "arrival": { - "time": "1763603756" - }, - "departure": { - "time": "1763603756" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23102" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5527945_23003", - "tripUpdate": { - "trip": { - "tripId": "5527945", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 69, - "arrival": { - "time": "1763602560" - }, - "departure": { - "time": "1763602560" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23003" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525686_17011", - "tripUpdate": { - "trip": { - "tripId": "5525686", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 71, - "arrival": { - "time": "1763602914" - }, - "departure": { - "time": "1763602914" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 72, - "arrival": { - "time": "1763602928" - }, - "departure": { - "time": "1763602928" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 73, - "arrival": { - "time": "1763602993" - }, - "departure": { - "time": "1763602993" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763603049" - }, - "departure": { - "time": "1763603049" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763603079" - }, - "departure": { - "time": "1763603079" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763603160" - }, - "departure": { - "time": "1763603160" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763603559" - }, - "departure": { - "time": "1763603559" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763603679" - }, - "departure": { - "time": "1763603679" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763603740" - }, - "departure": { - "time": "1763603740" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763603777" - }, - "departure": { - "time": "1763603777" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763603797" - }, - "departure": { - "time": "1763603797" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763603838" - }, - "departure": { - "time": "1763603838" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 83, - "arrival": { - "time": "1763603877" - }, - "departure": { - "time": "1763603877" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 84, - "arrival": { - "time": "1763603917" - }, - "departure": { - "time": "1763603917" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 85, - "arrival": { - "time": "1763603945" - }, - "departure": { - "time": "1763603945" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 86, - "arrival": { - "time": "1763604002" - }, - "departure": { - "time": "1763604002" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 87, - "arrival": { - "time": "1763604039" - }, - "departure": { - "time": "1763604039" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 88, - "arrival": { - "time": "1763604091" - }, - "departure": { - "time": "1763604091" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 89, - "arrival": { - "time": "1763604113" - }, - "departure": { - "time": "1763604113" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 90, - "arrival": { - "time": "1763604153" - }, - "departure": { - "time": "1763604153" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 91, - "arrival": { - "time": "1763604210" - }, - "departure": { - "time": "1763604210" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 92, - "arrival": { - "time": "1763604235" - }, - "departure": { - "time": "1763604235" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 93, - "arrival": { - "time": "1763604283" - }, - "departure": { - "time": "1763604283" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 94, - "arrival": { - "time": "1763604346" - }, - "departure": { - "time": "1763604346" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 95, - "arrival": { - "time": "1763604367" - }, - "departure": { - "time": "1763604367" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 96, - "arrival": { - "time": "1763604389" - }, - "departure": { - "time": "1763604389" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 97, - "arrival": { - "time": "1763604460" - }, - "departure": { - "time": "1763604460" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 98, - "arrival": { - "time": "1763604490" - }, - "departure": { - "time": "1763604490" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 99, - "arrival": { - "time": "1763604536" - }, - "departure": { - "time": "1763604536" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 100, - "arrival": { - "time": "1763604578" - }, - "departure": { - "time": "1763604578" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 101, - "arrival": { - "time": "1763604607" - }, - "departure": { - "time": "1763604607" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 102, - "arrival": { - "time": "1763604641" - }, - "departure": { - "time": "1763604641" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 103, - "arrival": { - "time": "1763604680" - }, - "departure": { - "time": "1763604680" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 104, - "arrival": { - "time": "1763604744" - }, - "departure": { - "time": "1763604744" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 105, - "arrival": { - "time": "1763604782" - }, - "departure": { - "time": "1763604782" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 106, - "arrival": { - "time": "1763604824" - }, - "departure": { - "time": "1763604824" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 107, - "arrival": { - "time": "1763604860" - }, - "departure": { - "time": "1763604860" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 108, - "arrival": { - "time": "1763604901" - }, - "departure": { - "time": "1763604901" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 109, - "arrival": { - "time": "1763604939" - }, - "departure": { - "time": "1763604939" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 110, - "arrival": { - "time": "1763604971" - }, - "departure": { - "time": "1763604971" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 111, - "arrival": { - "time": "1763604990" - }, - "departure": { - "time": "1763604990" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 112, - "arrival": { - "time": "1763605002" - }, - "departure": { - "time": "1763605002" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 113, - "arrival": { - "time": "1763605011" - }, - "departure": { - "time": "1763605011" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 114, - "arrival": { - "time": "1763605023" - }, - "departure": { - "time": "1763605023" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 115, - "arrival": { - "time": "1763605037" - }, - "departure": { - "time": "1763605037" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 116, - "arrival": { - "time": "1763605048" - }, - "departure": { - "time": "1763605048" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 117, - "arrival": { - "time": "1763605068" - }, - "departure": { - "time": "1763605068" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 118, - "arrival": { - "time": "1763605085" - }, - "departure": { - "time": "1763605085" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 119, - "arrival": { - "time": "1763605102" - }, - "departure": { - "time": "1763605102" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 120, - "arrival": { - "time": "1763605121" - }, - "departure": { - "time": "1763605121" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 121, - "arrival": { - "time": "1763605136" - }, - "departure": { - "time": "1763605136" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 122, - "arrival": { - "time": "1763605174" - }, - "departure": { - "time": "1763605174" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 123, - "arrival": { - "time": "1763605190" - }, - "departure": { - "time": "1763605190" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 124, - "arrival": { - "time": "1763605199" - }, - "departure": { - "time": "1763605199" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 125, - "arrival": { - "time": "1763605214" - }, - "departure": { - "time": "1763605214" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 126, - "arrival": { - "time": "1763605232" - }, - "departure": { - "time": "1763605232" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 127, - "arrival": { - "time": "1763605257" - }, - "departure": { - "time": "1763605257" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 128, - "arrival": { - "time": "1763605266" - }, - "departure": { - "time": "1763605266" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 129, - "arrival": { - "time": "1763605288" - }, - "departure": { - "time": "1763605288" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 130, - "arrival": { - "time": "1763605303" - }, - "departure": { - "time": "1763605303" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 131, - "arrival": { - "time": "1763605314" - }, - "departure": { - "time": "1763605314" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 132, - "arrival": { - "time": "1763605359" - }, - "departure": { - "time": "1763605359" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 133, - "arrival": { - "time": "1763605374" - }, - "departure": { - "time": "1763605374" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 134, - "arrival": { - "time": "1763605402" - }, - "departure": { - "time": "1763605402" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 135, - "arrival": { - "time": "1763605425" - }, - "departure": { - "time": "1763605425" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 136, - "arrival": { - "time": "1763605464" - }, - "departure": { - "time": "1763605464" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 137, - "arrival": { - "time": "1763605492" - }, - "departure": { - "time": "1763605492" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 138, - "arrival": { - "time": "1763605538" - }, - "departure": { - "time": "1763605538" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 139, - "arrival": { - "time": "1763605566" - }, - "departure": { - "time": "1763605566" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 140, - "arrival": { - "time": "1763605595" - }, - "departure": { - "time": "1763605595" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 141, - "arrival": { - "time": "1763605643" - }, - "departure": { - "time": "1763605643" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 142, - "arrival": { - "time": "1763605689" - }, - "departure": { - "time": "1763605689" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 143, - "arrival": { - "time": "1763605729" - }, - "departure": { - "time": "1763605729" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 144, - "arrival": { - "time": "1763605784" - }, - "departure": { - "time": "1763605784" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 145, - "arrival": { - "time": "1763605839" - }, - "departure": { - "time": "1763605839" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 146, - "arrival": { - "time": "1763605886" - }, - "departure": { - "time": "1763605886" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 147, - "arrival": { - "time": "1763605926" - }, - "departure": { - "time": "1763605926" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 148, - "arrival": { - "time": "1763605954" - }, - "departure": { - "time": "1763605954" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 149, - "arrival": { - "time": "1763605980" - }, - "departure": { - "time": "1763605980" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 150, - "arrival": { - "time": "1763606000" - }, - "departure": { - "time": "1763606000" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 151, - "arrival": { - "time": "1763606039" - }, - "departure": { - "time": "1763606039" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 152, - "arrival": { - "time": "1763606060" - }, - "departure": { - "time": "1763606060" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 153, - "arrival": { - "time": "1763606101" - }, - "departure": { - "time": "1763606101" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 154, - "arrival": { - "time": "1763606160" - }, - "departure": { - "time": "1763606160" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 155, - "arrival": { - "time": "1763606199" - }, - "departure": { - "time": "1763606199" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 156, - "arrival": { - "time": "1763606216" - }, - "departure": { - "time": "1763606216" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 157, - "arrival": { - "time": "1763606265" - }, - "departure": { - "time": "1763606265" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 158, - "arrival": { - "time": "1763606306" - }, - "departure": { - "time": "1763606306" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 159, - "arrival": { - "time": "1763606377" - }, - "departure": { - "time": "1763606377" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 160, - "arrival": { - "time": "1763606432" - }, - "departure": { - "time": "1763606432" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 161, - "arrival": { - "time": "1763606463" - }, - "departure": { - "time": "1763606463" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 162, - "arrival": { - "time": "1763606507" - }, - "departure": { - "time": "1763606507" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 163, - "arrival": { - "time": "1763606536" - }, - "departure": { - "time": "1763606536" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 164, - "arrival": { - "time": "1763606602" - }, - "departure": { - "time": "1763606602" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 165, - "arrival": { - "time": "1763606624" - }, - "departure": { - "time": "1763606624" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 166, - "arrival": { - "time": "1763606679" - }, - "departure": { - "time": "1763606679" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 167, - "arrival": { - "time": "1763606690" - }, - "departure": { - "time": "1763606690" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 168, - "arrival": { - "time": "1763606705" - }, - "departure": { - "time": "1763606705" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 169, - "arrival": { - "time": "1763606874" - }, - "departure": { - "time": "1763606874" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 170, - "arrival": { - "time": "1763606915" - }, - "departure": { - "time": "1763606915" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 171, - "arrival": { - "time": "1763606966" - }, - "departure": { - "time": "1763606966" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 172, - "arrival": { - "time": "1763606979" - }, - "departure": { - "time": "1763606979" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 173, - "arrival": { - "time": "1763607017" - }, - "departure": { - "time": "1763607017" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 174, - "arrival": { - "time": "1763607052" - }, - "departure": { - "time": "1763607052" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 175, - "arrival": { - "time": "1763607085" - }, - "departure": { - "time": "1763607085" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 176, - "arrival": { - "time": "1763607120" - }, - "departure": { - "time": "1763607120" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 177, - "arrival": { - "time": "1763607154" - }, - "departure": { - "time": "1763607154" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 178, - "arrival": { - "time": "1763607197" - }, - "departure": { - "time": "1763607197" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 179, - "arrival": { - "time": "1763607279" - }, - "departure": { - "time": "1763607279" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 180, - "arrival": { - "time": "1763607336" - }, - "departure": { - "time": "1763607336" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 181, - "arrival": { - "time": "1763607421" - }, - "departure": { - "time": "1763607421" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 182, - "arrival": { - "time": "1763607479" - }, - "departure": { - "time": "1763607479" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 183, - "arrival": { - "time": "1763607532" - }, - "departure": { - "time": "1763607532" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 184, - "arrival": { - "time": "1763607590" - }, - "departure": { - "time": "1763607590" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 185, - "arrival": { - "time": "1763607639" - }, - "departure": { - "time": "1763607639" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 186, - "arrival": { - "time": "1763607693" - }, - "departure": { - "time": "1763607693" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 187, - "arrival": { - "time": "1763607759" - }, - "departure": { - "time": "1763607759" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17011" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525044_17017", - "tripUpdate": { - "trip": { - "tripId": "5525044", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 73, - "arrival": { - "time": "1763602998" - }, - "departure": { - "time": "1763602998" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 74, - "arrival": { - "time": "1763603055" - }, - "departure": { - "time": "1763603055" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763603160" - }, - "departure": { - "time": "1763603160" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17017" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5530497_17075", - "tripUpdate": { - "trip": { - "tripId": "5530497", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 74, - "arrival": { - "time": "1763603127" - }, - "departure": { - "time": "1763603127" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 75, - "arrival": { - "time": "1763603160" - }, - "departure": { - "time": "1763603160" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 76, - "arrival": { - "time": "1763603217" - }, - "departure": { - "time": "1763603217" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763603243" - }, - "departure": { - "time": "1763603243" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763603285" - }, - "departure": { - "time": "1763603285" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763603327" - }, - "departure": { - "time": "1763603327" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763603368" - }, - "departure": { - "time": "1763603368" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763603383" - }, - "departure": { - "time": "1763603383" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763603408" - }, - "departure": { - "time": "1763603408" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 83, - "arrival": { - "time": "1763603580" - }, - "departure": { - "time": "1763603580" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 84, - "arrival": { - "time": "1763603700" - }, - "departure": { - "time": "1763603700" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17075" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5530465_11009", - "tripUpdate": { - "trip": { - "tripId": "5530465", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 76, - "arrival": { - "time": "1763602811" - }, - "departure": { - "time": "1763602811" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 77, - "arrival": { - "time": "1763602831" - }, - "departure": { - "time": "1763602831" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 78, - "arrival": { - "time": "1763602897" - }, - "departure": { - "time": "1763602897" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 79, - "arrival": { - "time": "1763602931" - }, - "departure": { - "time": "1763602931" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 80, - "arrival": { - "time": "1763602982" - }, - "departure": { - "time": "1763602982" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 81, - "arrival": { - "time": "1763603033" - }, - "departure": { - "time": "1763603033" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 82, - "arrival": { - "time": "1763603068" - }, - "departure": { - "time": "1763603068" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "11009" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5618158_21002", - "tripUpdate": { - "trip": { - "tripId": "5618158", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 82, - "arrival": { - "time": "1763603220" - }, - "departure": { - "time": "1763603220" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "21002" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5618168_22019", - "tripUpdate": { - "trip": { - "tripId": "5618168", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 82, - "arrival": { - "time": "1763602260" - }, - "departure": { - "time": "1763602260" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "22019" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525493_24011", - "tripUpdate": { - "trip": { - "tripId": "5525493", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 83, - "arrival": { - "time": "1763602952" - }, - "departure": { - "time": "1763602952" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 84, - "arrival": { - "time": "1763603009" - }, - "departure": { - "time": "1763603009" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 85, - "arrival": { - "time": "1763603051" - }, - "departure": { - "time": "1763603051" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 86, - "arrival": { - "time": "1763603075" - }, - "departure": { - "time": "1763603075" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 87, - "arrival": { - "time": "1763603152" - }, - "departure": { - "time": "1763603152" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 88, - "arrival": { - "time": "1763603190" - }, - "departure": { - "time": "1763603190" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 89, - "arrival": { - "time": "1763603249" - }, - "departure": { - "time": "1763603249" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 90, - "arrival": { - "time": "1763603301" - }, - "departure": { - "time": "1763603301" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 91, - "arrival": { - "time": "1763603347" - }, - "departure": { - "time": "1763603347" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 92, - "arrival": { - "time": "1763603421" - }, - "departure": { - "time": "1763603421" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 93, - "arrival": { - "time": "1763603609" - }, - "departure": { - "time": "1763603609" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "24011" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5528581_12009", - "tripUpdate": { - "trip": { - "tripId": "5528581", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 83, - "arrival": { - "time": "1763603040" - }, - "departure": { - "time": "1763603040" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "12009" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525654_18017", - "tripUpdate": { - "trip": { - "tripId": "5525654", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 84, - "arrival": { - "time": "1763602945" - }, - "departure": { - "time": "1763602945" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 85, - "arrival": { - "time": "1763602983" - }, - "departure": { - "time": "1763602983" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 86, - "arrival": { - "time": "1763603013" - }, - "departure": { - "time": "1763603013" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 87, - "arrival": { - "time": "1763603029" - }, - "departure": { - "time": "1763603029" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 88, - "arrival": { - "time": "1763603058" - }, - "departure": { - "time": "1763603058" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 89, - "arrival": { - "time": "1763603083" - }, - "departure": { - "time": "1763603083" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 90, - "arrival": { - "time": "1763603121" - }, - "departure": { - "time": "1763603121" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 91, - "arrival": { - "time": "1763603142" - }, - "departure": { - "time": "1763603142" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 92, - "arrival": { - "time": "1763603194" - }, - "departure": { - "time": "1763603194" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 93, - "arrival": { - "time": "1763603229" - }, - "departure": { - "time": "1763603229" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 94, - "arrival": { - "time": "1763603273" - }, - "departure": { - "time": "1763603273" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 95, - "arrival": { - "time": "1763603299" - }, - "departure": { - "time": "1763603299" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 96, - "arrival": { - "time": "1763603327" - }, - "departure": { - "time": "1763603327" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 97, - "arrival": { - "time": "1763603354" - }, - "departure": { - "time": "1763603354" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 98, - "arrival": { - "time": "1763603385" - }, - "departure": { - "time": "1763603385" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 99, - "arrival": { - "time": "1763603407" - }, - "departure": { - "time": "1763603407" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 100, - "arrival": { - "time": "1763603425" - }, - "departure": { - "time": "1763603425" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 101, - "arrival": { - "time": "1763603462" - }, - "departure": { - "time": "1763603462" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 102, - "arrival": { - "time": "1763603512" - }, - "departure": { - "time": "1763603512" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 103, - "arrival": { - "time": "1763603529" - }, - "departure": { - "time": "1763603529" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 104, - "arrival": { - "time": "1763603558" - }, - "departure": { - "time": "1763603558" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 105, - "arrival": { - "time": "1763603611" - }, - "departure": { - "time": "1763603611" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 106, - "arrival": { - "time": "1763603658" - }, - "departure": { - "time": "1763603658" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 107, - "arrival": { - "time": "1763603701" - }, - "departure": { - "time": "1763603701" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 108, - "arrival": { - "time": "1763603729" - }, - "departure": { - "time": "1763603729" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 109, - "arrival": { - "time": "1763603776" - }, - "departure": { - "time": "1763603776" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 110, - "arrival": { - "time": "1763603942" - }, - "departure": { - "time": "1763603942" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 111, - "arrival": { - "time": "1763604151" - }, - "departure": { - "time": "1763604151" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 112, - "arrival": { - "time": "1763604260" - }, - "departure": { - "time": "1763604260" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 113, - "arrival": { - "time": "1763604302" - }, - "departure": { - "time": "1763604302" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 114, - "arrival": { - "time": "1763604332" - }, - "departure": { - "time": "1763604332" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 115, - "arrival": { - "time": "1763604394" - }, - "departure": { - "time": "1763604394" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 116, - "arrival": { - "time": "1763604423" - }, - "departure": { - "time": "1763604423" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 117, - "arrival": { - "time": "1763604482" - }, - "departure": { - "time": "1763604482" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 118, - "arrival": { - "time": "1763604542" - }, - "departure": { - "time": "1763604542" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 119, - "arrival": { - "time": "1763604613" - }, - "departure": { - "time": "1763604613" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 120, - "arrival": { - "time": "1763604652" - }, - "departure": { - "time": "1763604652" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 121, - "arrival": { - "time": "1763604726" - }, - "departure": { - "time": "1763604726" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 122, - "arrival": { - "time": "1763604792" - }, - "departure": { - "time": "1763604792" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 123, - "arrival": { - "time": "1763604830" - }, - "departure": { - "time": "1763604830" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 124, - "arrival": { - "time": "1763604870" - }, - "departure": { - "time": "1763604870" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 125, - "arrival": { - "time": "1763604902" - }, - "departure": { - "time": "1763604902" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 126, - "arrival": { - "time": "1763605025" - }, - "departure": { - "time": "1763605025" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 127, - "arrival": { - "time": "1763605137" - }, - "departure": { - "time": "1763605137" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 128, - "arrival": { - "time": "1763605513" - }, - "departure": { - "time": "1763605513" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 129, - "arrival": { - "time": "1763605566" - }, - "departure": { - "time": "1763605566" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 130, - "arrival": { - "time": "1763605623" - }, - "departure": { - "time": "1763605623" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 131, - "arrival": { - "time": "1763605756" - }, - "departure": { - "time": "1763605756" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 132, - "arrival": { - "time": "1763605847" - }, - "departure": { - "time": "1763605847" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 133, - "arrival": { - "time": "1763606102" - }, - "departure": { - "time": "1763606102" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 134, - "arrival": { - "time": "1763606266" - }, - "departure": { - "time": "1763606266" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 135, - "arrival": { - "time": "1763606329" - }, - "departure": { - "time": "1763606329" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 136, - "arrival": { - "time": "1763606364" - }, - "departure": { - "time": "1763606364" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 137, - "arrival": { - "time": "1763606425" - }, - "departure": { - "time": "1763606425" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 138, - "arrival": { - "time": "1763606468" - }, - "departure": { - "time": "1763606468" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 139, - "arrival": { - "time": "1763606522" - }, - "departure": { - "time": "1763606522" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 140, - "arrival": { - "time": "1763606574" - }, - "departure": { - "time": "1763606574" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 141, - "arrival": { - "time": "1763606654" - }, - "departure": { - "time": "1763606654" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 142, - "arrival": { - "time": "1763606734" - }, - "departure": { - "time": "1763606734" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 143, - "arrival": { - "time": "1763606782" - }, - "departure": { - "time": "1763606782" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 144, - "arrival": { - "time": "1763606822" - }, - "departure": { - "time": "1763606822" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 145, - "arrival": { - "time": "1763606843" - }, - "departure": { - "time": "1763606843" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 146, - "arrival": { - "time": "1763606889" - }, - "departure": { - "time": "1763606889" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 147, - "arrival": { - "time": "1763606920" - }, - "departure": { - "time": "1763606920" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 148, - "arrival": { - "time": "1763606936" - }, - "departure": { - "time": "1763606936" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 149, - "arrival": { - "time": "1763606957" - }, - "departure": { - "time": "1763606957" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 150, - "arrival": { - "time": "1763606997" - }, - "departure": { - "time": "1763606997" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 151, - "arrival": { - "time": "1763607062" - }, - "departure": { - "time": "1763607062" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 152, - "arrival": { - "time": "1763607062" - }, - "departure": { - "time": "1763607062" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 153, - "arrival": { - "time": "1763607362" - }, - "departure": { - "time": "1763607362" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 154, - "arrival": { - "time": "1763607455" - }, - "departure": { - "time": "1763607455" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 155, - "arrival": { - "time": "1763607530" - }, - "departure": { - "time": "1763607530" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 156, - "arrival": { - "time": "1763607677" - }, - "departure": { - "time": "1763607677" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 157, - "arrival": { - "time": "1763607769" - }, - "departure": { - "time": "1763607769" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 158, - "arrival": { - "time": "1763607840" - }, - "departure": { - "time": "1763607840" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 159, - "arrival": { - "time": "1763607902" - }, - "departure": { - "time": "1763607902" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 160, - "arrival": { - "time": "1763608050" - }, - "departure": { - "time": "1763608050" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 161, - "arrival": { - "time": "1763608122" - }, - "departure": { - "time": "1763608122" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 162, - "arrival": { - "time": "1763608198" - }, - "departure": { - "time": "1763608198" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 163, - "arrival": { - "time": "1763608242" - }, - "departure": { - "time": "1763608242" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 164, - "arrival": { - "time": "1763608283" - }, - "departure": { - "time": "1763608283" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 165, - "arrival": { - "time": "1763608324" - }, - "departure": { - "time": "1763608324" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 166, - "arrival": { - "time": "1763608367" - }, - "departure": { - "time": "1763608367" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 167, - "arrival": { - "time": "1763608409" - }, - "departure": { - "time": "1763608409" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 168, - "arrival": { - "time": "1763608452" - }, - "departure": { - "time": "1763608452" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 169, - "arrival": { - "time": "1763608502" - }, - "departure": { - "time": "1763608502" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 170, - "arrival": { - "time": "1763608543" - }, - "departure": { - "time": "1763608543" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 171, - "arrival": { - "time": "1763608622" - }, - "departure": { - "time": "1763608622" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 172, - "arrival": { - "time": "1763608699" - }, - "departure": { - "time": "1763608699" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 173, - "arrival": { - "time": "1763608766" - }, - "departure": { - "time": "1763608766" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 174, - "arrival": { - "time": "1763608820" - }, - "departure": { - "time": "1763608820" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 175, - "arrival": { - "time": "1763608982" - }, - "departure": { - "time": "1763608982" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 176, - "arrival": { - "time": "1763609211" - }, - "departure": { - "time": "1763609211" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 177, - "arrival": { - "time": "1763609287" - }, - "departure": { - "time": "1763609287" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 178, - "arrival": { - "time": "1763609582" - }, - "departure": { - "time": "1763609582" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "18017" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5528512_20052", - "tripUpdate": { - "trip": { - "tripId": "5528512", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 84, - "arrival": { - "time": "1763602900" - }, - "departure": { - "time": "1763602900" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 85, - "arrival": { - "time": "1763602935" - }, - "departure": { - "time": "1763602935" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 86, - "arrival": { - "time": "1763602974" - }, - "departure": { - "time": "1763602974" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 87, - "arrival": { - "time": "1763602995" - }, - "departure": { - "time": "1763602995" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 88, - "arrival": { - "time": "1763603043" - }, - "departure": { - "time": "1763603043" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 89, - "arrival": { - "time": "1763603068" - }, - "departure": { - "time": "1763603068" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 90, - "arrival": { - "time": "1763603116" - }, - "departure": { - "time": "1763603116" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 91, - "arrival": { - "time": "1763603167" - }, - "departure": { - "time": "1763603167" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 92, - "arrival": { - "time": "1763603235" - }, - "departure": { - "time": "1763603235" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 93, - "arrival": { - "time": "1763603382" - }, - "departure": { - "time": "1763603382" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 94, - "arrival": { - "time": "1763603464" - }, - "departure": { - "time": "1763603464" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 95, - "arrival": { - "time": "1763603569" - }, - "departure": { - "time": "1763603569" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 96, - "arrival": { - "time": "1763603715" - }, - "departure": { - "time": "1763603715" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "20052" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5534663_10008", - "tripUpdate": { - "trip": { - "tripId": "5534663", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 86, - "arrival": { - "time": "1763602936" - }, - "departure": { - "time": "1763602936" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 87, - "arrival": { - "time": "1763602975" - }, - "departure": { - "time": "1763602975" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 88, - "arrival": { - "time": "1763603021" - }, - "departure": { - "time": "1763603021" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 89, - "arrival": { - "time": "1763603047" - }, - "departure": { - "time": "1763603047" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 90, - "arrival": { - "time": "1763603063" - }, - "departure": { - "time": "1763603063" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 91, - "arrival": { - "time": "1763603082" - }, - "departure": { - "time": "1763603082" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 92, - "arrival": { - "time": "1763603101" - }, - "departure": { - "time": "1763603101" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 93, - "arrival": { - "time": "1763603138" - }, - "departure": { - "time": "1763603138" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 94, - "arrival": { - "time": "1763603172" - }, - "departure": { - "time": "1763603172" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 95, - "arrival": { - "time": "1763603207" - }, - "departure": { - "time": "1763603207" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 96, - "arrival": { - "time": "1763603243" - }, - "departure": { - "time": "1763603243" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 97, - "arrival": { - "time": "1763603270" - }, - "departure": { - "time": "1763603270" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 98, - "arrival": { - "time": "1763603295" - }, - "departure": { - "time": "1763603295" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 99, - "arrival": { - "time": "1763603343" - }, - "departure": { - "time": "1763603343" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 100, - "arrival": { - "time": "1763603361" - }, - "departure": { - "time": "1763603361" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 101, - "arrival": { - "time": "1763603390" - }, - "departure": { - "time": "1763603390" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 102, - "arrival": { - "time": "1763603420" - }, - "departure": { - "time": "1763603420" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 103, - "arrival": { - "time": "1763603437" - }, - "departure": { - "time": "1763603437" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 104, - "arrival": { - "time": "1763603463" - }, - "departure": { - "time": "1763603463" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 105, - "arrival": { - "time": "1763603486" - }, - "departure": { - "time": "1763603486" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 106, - "arrival": { - "time": "1763603528" - }, - "departure": { - "time": "1763603528" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 107, - "arrival": { - "time": "1763603558" - }, - "departure": { - "time": "1763603558" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 108, - "arrival": { - "time": "1763603581" - }, - "departure": { - "time": "1763603581" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 109, - "arrival": { - "time": "1763603626" - }, - "departure": { - "time": "1763603626" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 110, - "arrival": { - "time": "1763603653" - }, - "departure": { - "time": "1763603653" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 111, - "arrival": { - "time": "1763603693" - }, - "departure": { - "time": "1763603693" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 112, - "arrival": { - "time": "1763603709" - }, - "departure": { - "time": "1763603709" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 113, - "arrival": { - "time": "1763603763" - }, - "departure": { - "time": "1763603763" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 114, - "arrival": { - "time": "1763603796" - }, - "departure": { - "time": "1763603796" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 115, - "arrival": { - "time": "1763603805" - }, - "departure": { - "time": "1763603805" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 116, - "arrival": { - "time": "1763603825" - }, - "departure": { - "time": "1763603825" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 117, - "arrival": { - "time": "1763603842" - }, - "departure": { - "time": "1763603842" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 118, - "arrival": { - "time": "1763603857" - }, - "departure": { - "time": "1763603857" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 119, - "arrival": { - "time": "1763603878" - }, - "departure": { - "time": "1763603878" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 120, - "arrival": { - "time": "1763603895" - }, - "departure": { - "time": "1763603895" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 121, - "arrival": { - "time": "1763603905" - }, - "departure": { - "time": "1763603905" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 122, - "arrival": { - "time": "1763603912" - }, - "departure": { - "time": "1763603912" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 123, - "arrival": { - "time": "1763603919" - }, - "departure": { - "time": "1763603919" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 124, - "arrival": { - "time": "1763603952" - }, - "departure": { - "time": "1763603952" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 125, - "arrival": { - "time": "1763603961" - }, - "departure": { - "time": "1763603961" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 126, - "arrival": { - "time": "1763603979" - }, - "departure": { - "time": "1763603979" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 127, - "arrival": { - "time": "1763604212" - }, - "departure": { - "time": "1763604212" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 128, - "arrival": { - "time": "1763604269" - }, - "departure": { - "time": "1763604269" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 129, - "arrival": { - "time": "1763604339" - }, - "departure": { - "time": "1763604339" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 130, - "arrival": { - "time": "1763604363" - }, - "departure": { - "time": "1763604363" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 131, - "arrival": { - "time": "1763604392" - }, - "departure": { - "time": "1763604392" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 132, - "arrival": { - "time": "1763604418" - }, - "departure": { - "time": "1763604418" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 133, - "arrival": { - "time": "1763604443" - }, - "departure": { - "time": "1763604443" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 134, - "arrival": { - "time": "1763604469" - }, - "departure": { - "time": "1763604469" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 135, - "arrival": { - "time": "1763604494" - }, - "departure": { - "time": "1763604494" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 136, - "arrival": { - "time": "1763604526" - }, - "departure": { - "time": "1763604526" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 137, - "arrival": { - "time": "1763604586" - }, - "departure": { - "time": "1763604586" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 138, - "arrival": { - "time": "1763604615" - }, - "departure": { - "time": "1763604615" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 139, - "arrival": { - "time": "1763604663" - }, - "departure": { - "time": "1763604663" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 140, - "arrival": { - "time": "1763604766" - }, - "departure": { - "time": "1763604766" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 141, - "arrival": { - "time": "1763604860" - }, - "departure": { - "time": "1763604860" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 142, - "arrival": { - "time": "1763604963" - }, - "departure": { - "time": "1763604963" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 143, - "arrival": { - "time": "1763605009" - }, - "departure": { - "time": "1763605009" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 144, - "arrival": { - "time": "1763605143" - }, - "departure": { - "time": "1763605143" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 145, - "arrival": { - "time": "1763605259" - }, - "departure": { - "time": "1763605259" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 146, - "arrival": { - "time": "1763605363" - }, - "departure": { - "time": "1763605363" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 147, - "arrival": { - "time": "1763605444" - }, - "departure": { - "time": "1763605444" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 148, - "arrival": { - "time": "1763605610" - }, - "departure": { - "time": "1763605610" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 149, - "arrival": { - "time": "1763605809" - }, - "departure": { - "time": "1763605809" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 150, - "arrival": { - "time": "1763606032" - }, - "departure": { - "time": "1763606032" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 151, - "arrival": { - "time": "1763606103" - }, - "departure": { - "time": "1763606103" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 152, - "arrival": { - "time": "1763606225" - }, - "departure": { - "time": "1763606225" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 153, - "arrival": { - "time": "1763606361" - }, - "departure": { - "time": "1763606361" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 154, - "arrival": { - "time": "1763606446" - }, - "departure": { - "time": "1763606446" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 155, - "arrival": { - "time": "1763606546" - }, - "departure": { - "time": "1763606546" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 156, - "arrival": { - "time": "1763606604" - }, - "departure": { - "time": "1763606604" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 157, - "arrival": { - "time": "1763606841" - }, - "departure": { - "time": "1763606841" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 158, - "arrival": { - "time": "1763606883" - }, - "departure": { - "time": "1763606883" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 159, - "arrival": { - "time": "1763606898" - }, - "departure": { - "time": "1763606898" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 160, - "arrival": { - "time": "1763606945" - }, - "departure": { - "time": "1763606945" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 161, - "arrival": { - "time": "1763606972" - }, - "departure": { - "time": "1763606972" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 162, - "arrival": { - "time": "1763606988" - }, - "departure": { - "time": "1763606988" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 163, - "arrival": { - "time": "1763607003" - }, - "departure": { - "time": "1763607003" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 164, - "arrival": { - "time": "1763607035" - }, - "departure": { - "time": "1763607035" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 165, - "arrival": { - "time": "1763607123" - }, - "departure": { - "time": "1763607123" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "10008" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5534645_14002", - "tripUpdate": { - "trip": { - "tripId": "5534645", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 88, - "arrival": { - "time": "1763602906" - }, - "departure": { - "time": "1763602906" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 89, - "arrival": { - "time": "1763602937" - }, - "departure": { - "time": "1763602937" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 90, - "arrival": { - "time": "1763602953" - }, - "departure": { - "time": "1763602953" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 91, - "arrival": { - "time": "1763602968" - }, - "departure": { - "time": "1763602968" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 92, - "arrival": { - "time": "1763602994" - }, - "departure": { - "time": "1763602994" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 93, - "arrival": { - "time": "1763603038" - }, - "departure": { - "time": "1763603038" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 94, - "arrival": { - "time": "1763603072" - }, - "departure": { - "time": "1763603072" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 95, - "arrival": { - "time": "1763603105" - }, - "departure": { - "time": "1763603105" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 96, - "arrival": { - "time": "1763603130" - }, - "departure": { - "time": "1763603130" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 97, - "arrival": { - "time": "1763603164" - }, - "departure": { - "time": "1763603164" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 98, - "arrival": { - "time": "1763603182" - }, - "departure": { - "time": "1763603182" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 99, - "arrival": { - "time": "1763603198" - }, - "departure": { - "time": "1763603198" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 100, - "arrival": { - "time": "1763603213" - }, - "departure": { - "time": "1763603213" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 101, - "arrival": { - "time": "1763603232" - }, - "departure": { - "time": "1763603232" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 102, - "arrival": { - "time": "1763603250" - }, - "departure": { - "time": "1763603250" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 103, - "arrival": { - "time": "1763603265" - }, - "departure": { - "time": "1763603265" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 104, - "arrival": { - "time": "1763603280" - }, - "departure": { - "time": "1763603280" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 105, - "arrival": { - "time": "1763603294" - }, - "departure": { - "time": "1763603294" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 106, - "arrival": { - "time": "1763603304" - }, - "departure": { - "time": "1763603304" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 107, - "arrival": { - "time": "1763603347" - }, - "departure": { - "time": "1763603347" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 108, - "arrival": { - "time": "1763603377" - }, - "departure": { - "time": "1763603377" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 109, - "arrival": { - "time": "1763603397" - }, - "departure": { - "time": "1763603397" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 110, - "arrival": { - "time": "1763603427" - }, - "departure": { - "time": "1763603427" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 111, - "arrival": { - "time": "1763603477" - }, - "departure": { - "time": "1763603477" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 112, - "arrival": { - "time": "1763603521" - }, - "departure": { - "time": "1763603521" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 113, - "arrival": { - "time": "1763603707" - }, - "departure": { - "time": "1763603707" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 114, - "arrival": { - "time": "1763603819" - }, - "departure": { - "time": "1763603819" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 115, - "arrival": { - "time": "1763603846" - }, - "departure": { - "time": "1763603846" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 116, - "arrival": { - "time": "1763603877" - }, - "departure": { - "time": "1763603877" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 117, - "arrival": { - "time": "1763603929" - }, - "departure": { - "time": "1763603929" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 118, - "arrival": { - "time": "1763603972" - }, - "departure": { - "time": "1763603972" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 119, - "arrival": { - "time": "1763604002" - }, - "departure": { - "time": "1763604002" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 120, - "arrival": { - "time": "1763604029" - }, - "departure": { - "time": "1763604029" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 121, - "arrival": { - "time": "1763604059" - }, - "departure": { - "time": "1763604059" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 122, - "arrival": { - "time": "1763604088" - }, - "departure": { - "time": "1763604088" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 123, - "arrival": { - "time": "1763604124" - }, - "departure": { - "time": "1763604124" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 124, - "arrival": { - "time": "1763604163" - }, - "departure": { - "time": "1763604163" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 125, - "arrival": { - "time": "1763604194" - }, - "departure": { - "time": "1763604194" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 126, - "arrival": { - "time": "1763604247" - }, - "departure": { - "time": "1763604247" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 127, - "arrival": { - "time": "1763604280" - }, - "departure": { - "time": "1763604280" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 128, - "arrival": { - "time": "1763604330" - }, - "departure": { - "time": "1763604330" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 129, - "arrival": { - "time": "1763604358" - }, - "departure": { - "time": "1763604358" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 130, - "arrival": { - "time": "1763604499" - }, - "departure": { - "time": "1763604499" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 131, - "arrival": { - "time": "1763604614" - }, - "departure": { - "time": "1763604614" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 132, - "arrival": { - "time": "1763604658" - }, - "departure": { - "time": "1763604658" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 133, - "arrival": { - "time": "1763604847" - }, - "departure": { - "time": "1763604847" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 134, - "arrival": { - "time": "1763605387" - }, - "departure": { - "time": "1763605387" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 135, - "arrival": { - "time": "1763605471" - }, - "departure": { - "time": "1763605471" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 136, - "arrival": { - "time": "1763605627" - }, - "departure": { - "time": "1763605627" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 137, - "arrival": { - "time": "1763605927" - }, - "departure": { - "time": "1763605927" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 138, - "arrival": { - "time": "1763606180" - }, - "departure": { - "time": "1763606180" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 139, - "arrival": { - "time": "1763606369" - }, - "departure": { - "time": "1763606369" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 140, - "arrival": { - "time": "1763606443" - }, - "departure": { - "time": "1763606443" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 141, - "arrival": { - "time": "1763606534" - }, - "departure": { - "time": "1763606534" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 142, - "arrival": { - "time": "1763606566" - }, - "departure": { - "time": "1763606566" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 143, - "arrival": { - "time": "1763606615" - }, - "departure": { - "time": "1763606615" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 144, - "arrival": { - "time": "1763606634" - }, - "departure": { - "time": "1763606634" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 145, - "arrival": { - "time": "1763606675" - }, - "departure": { - "time": "1763606675" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 146, - "arrival": { - "time": "1763606694" - }, - "departure": { - "time": "1763606694" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 147, - "arrival": { - "time": "1763606721" - }, - "departure": { - "time": "1763606721" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 148, - "arrival": { - "time": "1763606771" - }, - "departure": { - "time": "1763606771" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 149, - "arrival": { - "time": "1763606827" - }, - "departure": { - "time": "1763606827" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 150, - "arrival": { - "time": "1763606947" - }, - "departure": { - "time": "1763606947" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 151, - "arrival": { - "time": "1763607147" - }, - "departure": { - "time": "1763607147" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 152, - "arrival": { - "time": "1763607266" - }, - "departure": { - "time": "1763607266" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 153, - "arrival": { - "time": "1763607339" - }, - "departure": { - "time": "1763607339" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 154, - "arrival": { - "time": "1763607386" - }, - "departure": { - "time": "1763607386" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 155, - "arrival": { - "time": "1763607413" - }, - "departure": { - "time": "1763607413" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 156, - "arrival": { - "time": "1763607441" - }, - "departure": { - "time": "1763607441" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 157, - "arrival": { - "time": "1763607492" - }, - "departure": { - "time": "1763607492" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 158, - "arrival": { - "time": "1763607526" - }, - "departure": { - "time": "1763607526" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 159, - "arrival": { - "time": "1763607598" - }, - "departure": { - "time": "1763607598" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 160, - "arrival": { - "time": "1763607633" - }, - "departure": { - "time": "1763607633" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 161, - "arrival": { - "time": "1763607666" - }, - "departure": { - "time": "1763607666" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 162, - "arrival": { - "time": "1763607701" - }, - "departure": { - "time": "1763607701" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 163, - "arrival": { - "time": "1763607741" - }, - "departure": { - "time": "1763607741" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 164, - "arrival": { - "time": "1763607907" - }, - "departure": { - "time": "1763607907" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 165, - "arrival": { - "time": "1763608139" - }, - "departure": { - "time": "1763608139" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 166, - "arrival": { - "time": "1763608215" - }, - "departure": { - "time": "1763608215" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 167, - "arrival": { - "time": "1763608507" - }, - "departure": { - "time": "1763608507" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "14002" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525424_23103", - "tripUpdate": { - "trip": { - "tripId": "5525424", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 91, - "arrival": { - "time": "1763602971" - }, - "departure": { - "time": "1763602971" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 92, - "arrival": { - "time": "1763602992" - }, - "departure": { - "time": "1763602992" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 93, - "arrival": { - "time": "1763603051" - }, - "departure": { - "time": "1763603051" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "23103" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525423_17049", - "tripUpdate": { - "trip": { - "tripId": "5525423", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 92, - "arrival": { - "time": "1763602501" - }, - "departure": { - "time": "1763602501" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 93, - "arrival": { - "time": "1763602560" - }, - "departure": { - "time": "1763602560" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17049" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525492_15012", - "tripUpdate": { - "trip": { - "tripId": "5525492", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 93, - "arrival": { - "time": "1763603051" - }, - "departure": { - "time": "1763603051" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "15012" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5528503_20054", - "tripUpdate": { - "trip": { - "tripId": "5528503", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 93, - "arrival": { - "time": "1763602133" - }, - "departure": { - "time": "1763602133" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 94, - "arrival": { - "time": "1763602217" - }, - "departure": { - "time": "1763602217" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 95, - "arrival": { - "time": "1763602380" - }, - "departure": { - "time": "1763602380" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "20054" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525653_07004", - "tripUpdate": { - "trip": { - "tripId": "5525653", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 113, - "arrival": { - "time": "1763603019" - }, - "departure": { - "time": "1763603019" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 114, - "arrival": { - "time": "1763603049" - }, - "departure": { - "time": "1763603049" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 115, - "arrival": { - "time": "1763603111" - }, - "departure": { - "time": "1763603111" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 116, - "arrival": { - "time": "1763603140" - }, - "departure": { - "time": "1763603140" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 117, - "arrival": { - "time": "1763603199" - }, - "departure": { - "time": "1763603199" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 118, - "arrival": { - "time": "1763603259" - }, - "departure": { - "time": "1763603259" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 119, - "arrival": { - "time": "1763603330" - }, - "departure": { - "time": "1763603330" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 120, - "arrival": { - "time": "1763603369" - }, - "departure": { - "time": "1763603369" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 121, - "arrival": { - "time": "1763603443" - }, - "departure": { - "time": "1763603443" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 122, - "arrival": { - "time": "1763603509" - }, - "departure": { - "time": "1763603509" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 123, - "arrival": { - "time": "1763603547" - }, - "departure": { - "time": "1763603547" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 124, - "arrival": { - "time": "1763603587" - }, - "departure": { - "time": "1763603587" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 125, - "arrival": { - "time": "1763603619" - }, - "departure": { - "time": "1763603619" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 126, - "arrival": { - "time": "1763603742" - }, - "departure": { - "time": "1763603742" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 127, - "arrival": { - "time": "1763603854" - }, - "departure": { - "time": "1763603854" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 128, - "arrival": { - "time": "1763604230" - }, - "departure": { - "time": "1763604230" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 129, - "arrival": { - "time": "1763604283" - }, - "departure": { - "time": "1763604283" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 130, - "arrival": { - "time": "1763604340" - }, - "departure": { - "time": "1763604340" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 131, - "arrival": { - "time": "1763604473" - }, - "departure": { - "time": "1763604473" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 132, - "arrival": { - "time": "1763604564" - }, - "departure": { - "time": "1763604564" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 133, - "arrival": { - "time": "1763604819" - }, - "departure": { - "time": "1763604819" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 134, - "arrival": { - "time": "1763604983" - }, - "departure": { - "time": "1763604983" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 135, - "arrival": { - "time": "1763605046" - }, - "departure": { - "time": "1763605046" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 136, - "arrival": { - "time": "1763605081" - }, - "departure": { - "time": "1763605081" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 137, - "arrival": { - "time": "1763605142" - }, - "departure": { - "time": "1763605142" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 138, - "arrival": { - "time": "1763605185" - }, - "departure": { - "time": "1763605185" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 139, - "arrival": { - "time": "1763605239" - }, - "departure": { - "time": "1763605239" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 140, - "arrival": { - "time": "1763605291" - }, - "departure": { - "time": "1763605291" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 141, - "arrival": { - "time": "1763605371" - }, - "departure": { - "time": "1763605371" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 142, - "arrival": { - "time": "1763605451" - }, - "departure": { - "time": "1763605451" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 143, - "arrival": { - "time": "1763605499" - }, - "departure": { - "time": "1763605499" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 144, - "arrival": { - "time": "1763605539" - }, - "departure": { - "time": "1763605539" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 145, - "arrival": { - "time": "1763605560" - }, - "departure": { - "time": "1763605560" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 146, - "arrival": { - "time": "1763605606" - }, - "departure": { - "time": "1763605606" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 147, - "arrival": { - "time": "1763605637" - }, - "departure": { - "time": "1763605637" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 148, - "arrival": { - "time": "1763605653" - }, - "departure": { - "time": "1763605653" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 149, - "arrival": { - "time": "1763605674" - }, - "departure": { - "time": "1763605674" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 150, - "arrival": { - "time": "1763605714" - }, - "departure": { - "time": "1763605714" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 151, - "arrival": { - "time": "1763605779" - }, - "departure": { - "time": "1763605779" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 152, - "arrival": { - "time": "1763605779" - }, - "departure": { - "time": "1763605779" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 153, - "arrival": { - "time": "1763606079" - }, - "departure": { - "time": "1763606079" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 154, - "arrival": { - "time": "1763606172" - }, - "departure": { - "time": "1763606172" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 155, - "arrival": { - "time": "1763606247" - }, - "departure": { - "time": "1763606247" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 156, - "arrival": { - "time": "1763606394" - }, - "departure": { - "time": "1763606394" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 157, - "arrival": { - "time": "1763606486" - }, - "departure": { - "time": "1763606486" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 158, - "arrival": { - "time": "1763606557" - }, - "departure": { - "time": "1763606557" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 159, - "arrival": { - "time": "1763606619" - }, - "departure": { - "time": "1763606619" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 160, - "arrival": { - "time": "1763606767" - }, - "departure": { - "time": "1763606767" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 161, - "arrival": { - "time": "1763606839" - }, - "departure": { - "time": "1763606839" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 162, - "arrival": { - "time": "1763606915" - }, - "departure": { - "time": "1763606915" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 163, - "arrival": { - "time": "1763606959" - }, - "departure": { - "time": "1763606959" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 164, - "arrival": { - "time": "1763607000" - }, - "departure": { - "time": "1763607000" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 165, - "arrival": { - "time": "1763607041" - }, - "departure": { - "time": "1763607041" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 166, - "arrival": { - "time": "1763607084" - }, - "departure": { - "time": "1763607084" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 167, - "arrival": { - "time": "1763607126" - }, - "departure": { - "time": "1763607126" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 168, - "arrival": { - "time": "1763607169" - }, - "departure": { - "time": "1763607169" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 169, - "arrival": { - "time": "1763607219" - }, - "departure": { - "time": "1763607219" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 170, - "arrival": { - "time": "1763607260" - }, - "departure": { - "time": "1763607260" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 171, - "arrival": { - "time": "1763607339" - }, - "departure": { - "time": "1763607339" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 172, - "arrival": { - "time": "1763607416" - }, - "departure": { - "time": "1763607416" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 173, - "arrival": { - "time": "1763607483" - }, - "departure": { - "time": "1763607483" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 174, - "arrival": { - "time": "1763607537" - }, - "departure": { - "time": "1763607537" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 175, - "arrival": { - "time": "1763607699" - }, - "departure": { - "time": "1763607699" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 176, - "arrival": { - "time": "1763607928" - }, - "departure": { - "time": "1763607928" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 177, - "arrival": { - "time": "1763608004" - }, - "departure": { - "time": "1763608004" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 178, - "arrival": { - "time": "1763608299" - }, - "departure": { - "time": "1763608299" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "07004" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5534644_17001", - "tripUpdate": { - "trip": { - "tripId": "5534644", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 129, - "arrival": { - "time": "1763602963" - }, - "departure": { - "time": "1763602963" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 130, - "arrival": { - "time": "1763603104" - }, - "departure": { - "time": "1763603104" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 131, - "arrival": { - "time": "1763603219" - }, - "departure": { - "time": "1763603219" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 132, - "arrival": { - "time": "1763603263" - }, - "departure": { - "time": "1763603263" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 133, - "arrival": { - "time": "1763603452" - }, - "departure": { - "time": "1763603452" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 134, - "arrival": { - "time": "1763603992" - }, - "departure": { - "time": "1763603992" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 135, - "arrival": { - "time": "1763604055" - }, - "departure": { - "time": "1763604055" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 136, - "arrival": { - "time": "1763604172" - }, - "departure": { - "time": "1763604172" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 137, - "arrival": { - "time": "1763604472" - }, - "departure": { - "time": "1763604472" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 138, - "arrival": { - "time": "1763604708" - }, - "departure": { - "time": "1763604708" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 139, - "arrival": { - "time": "1763604884" - }, - "departure": { - "time": "1763604884" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 140, - "arrival": { - "time": "1763604953" - }, - "departure": { - "time": "1763604953" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 141, - "arrival": { - "time": "1763605038" - }, - "departure": { - "time": "1763605038" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 142, - "arrival": { - "time": "1763605068" - }, - "departure": { - "time": "1763605068" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 143, - "arrival": { - "time": "1763605114" - }, - "departure": { - "time": "1763605114" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 144, - "arrival": { - "time": "1763605132" - }, - "departure": { - "time": "1763605132" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 145, - "arrival": { - "time": "1763605170" - }, - "departure": { - "time": "1763605170" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 146, - "arrival": { - "time": "1763605188" - }, - "departure": { - "time": "1763605188" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 147, - "arrival": { - "time": "1763605213" - }, - "departure": { - "time": "1763605213" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 148, - "arrival": { - "time": "1763605260" - }, - "departure": { - "time": "1763605260" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 149, - "arrival": { - "time": "1763605312" - }, - "departure": { - "time": "1763605312" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 150, - "arrival": { - "time": "1763605432" - }, - "departure": { - "time": "1763605432" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 151, - "arrival": { - "time": "1763605644" - }, - "departure": { - "time": "1763605644" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 152, - "arrival": { - "time": "1763605770" - }, - "departure": { - "time": "1763605770" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 153, - "arrival": { - "time": "1763605847" - }, - "departure": { - "time": "1763605847" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 154, - "arrival": { - "time": "1763605897" - }, - "departure": { - "time": "1763605897" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 155, - "arrival": { - "time": "1763605926" - }, - "departure": { - "time": "1763605926" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 156, - "arrival": { - "time": "1763605956" - }, - "departure": { - "time": "1763605956" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 157, - "arrival": { - "time": "1763606011" - }, - "departure": { - "time": "1763606011" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 158, - "arrival": { - "time": "1763606047" - }, - "departure": { - "time": "1763606047" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 159, - "arrival": { - "time": "1763606123" - }, - "departure": { - "time": "1763606123" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 160, - "arrival": { - "time": "1763606160" - }, - "departure": { - "time": "1763606160" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 161, - "arrival": { - "time": "1763606195" - }, - "departure": { - "time": "1763606195" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 162, - "arrival": { - "time": "1763606232" - }, - "departure": { - "time": "1763606232" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 163, - "arrival": { - "time": "1763606274" - }, - "departure": { - "time": "1763606274" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 164, - "arrival": { - "time": "1763606452" - }, - "departure": { - "time": "1763606452" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 165, - "arrival": { - "time": "1763606684" - }, - "departure": { - "time": "1763606684" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 166, - "arrival": { - "time": "1763606760" - }, - "departure": { - "time": "1763606760" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 167, - "arrival": { - "time": "1763607052" - }, - "departure": { - "time": "1763607052" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17001" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5534660_14001", - "tripUpdate": { - "trip": { - "tripId": "5534660", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 130, - "arrival": { - "time": "1763602950" - }, - "departure": { - "time": "1763602950" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 131, - "arrival": { - "time": "1763602979" - }, - "departure": { - "time": "1763602979" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 132, - "arrival": { - "time": "1763603005" - }, - "departure": { - "time": "1763603005" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 133, - "arrival": { - "time": "1763603030" - }, - "departure": { - "time": "1763603030" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 134, - "arrival": { - "time": "1763603056" - }, - "departure": { - "time": "1763603056" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 135, - "arrival": { - "time": "1763603081" - }, - "departure": { - "time": "1763603081" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 136, - "arrival": { - "time": "1763603113" - }, - "departure": { - "time": "1763603113" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 137, - "arrival": { - "time": "1763603173" - }, - "departure": { - "time": "1763603173" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 138, - "arrival": { - "time": "1763603202" - }, - "departure": { - "time": "1763603202" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 139, - "arrival": { - "time": "1763603250" - }, - "departure": { - "time": "1763603250" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 140, - "arrival": { - "time": "1763603353" - }, - "departure": { - "time": "1763603353" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 141, - "arrival": { - "time": "1763603447" - }, - "departure": { - "time": "1763603447" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 142, - "arrival": { - "time": "1763603550" - }, - "departure": { - "time": "1763603550" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 143, - "arrival": { - "time": "1763603596" - }, - "departure": { - "time": "1763603596" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 144, - "arrival": { - "time": "1763603730" - }, - "departure": { - "time": "1763603730" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 145, - "arrival": { - "time": "1763603846" - }, - "departure": { - "time": "1763603846" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 146, - "arrival": { - "time": "1763603950" - }, - "departure": { - "time": "1763603950" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 147, - "arrival": { - "time": "1763604031" - }, - "departure": { - "time": "1763604031" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 148, - "arrival": { - "time": "1763604197" - }, - "departure": { - "time": "1763604197" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 149, - "arrival": { - "time": "1763604396" - }, - "departure": { - "time": "1763604396" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 150, - "arrival": { - "time": "1763604619" - }, - "departure": { - "time": "1763604619" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 151, - "arrival": { - "time": "1763604690" - }, - "departure": { - "time": "1763604690" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 152, - "arrival": { - "time": "1763604812" - }, - "departure": { - "time": "1763604812" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 153, - "arrival": { - "time": "1763604948" - }, - "departure": { - "time": "1763604948" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 154, - "arrival": { - "time": "1763605033" - }, - "departure": { - "time": "1763605033" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 155, - "arrival": { - "time": "1763605133" - }, - "departure": { - "time": "1763605133" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 156, - "arrival": { - "time": "1763605191" - }, - "departure": { - "time": "1763605191" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 157, - "arrival": { - "time": "1763605428" - }, - "departure": { - "time": "1763605428" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 158, - "arrival": { - "time": "1763605470" - }, - "departure": { - "time": "1763605470" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 159, - "arrival": { - "time": "1763605485" - }, - "departure": { - "time": "1763605485" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 160, - "arrival": { - "time": "1763605532" - }, - "departure": { - "time": "1763605532" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 161, - "arrival": { - "time": "1763605559" - }, - "departure": { - "time": "1763605559" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 162, - "arrival": { - "time": "1763605575" - }, - "departure": { - "time": "1763605575" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 163, - "arrival": { - "time": "1763605590" - }, - "departure": { - "time": "1763605590" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 164, - "arrival": { - "time": "1763605622" - }, - "departure": { - "time": "1763605622" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 165, - "arrival": { - "time": "1763605710" - }, - "departure": { - "time": "1763605710" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "14001" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525652_17002", - "tripUpdate": { - "trip": { - "tripId": "5525652", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 134, - "arrival": { - "time": "1763603444" - }, - "departure": { - "time": "1763603444" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 135, - "arrival": { - "time": "1763603507" - }, - "departure": { - "time": "1763603507" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 136, - "arrival": { - "time": "1763603542" - }, - "departure": { - "time": "1763603542" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 137, - "arrival": { - "time": "1763603603" - }, - "departure": { - "time": "1763603603" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 138, - "arrival": { - "time": "1763603646" - }, - "departure": { - "time": "1763603646" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 139, - "arrival": { - "time": "1763603700" - }, - "departure": { - "time": "1763603700" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 140, - "arrival": { - "time": "1763603773" - }, - "departure": { - "time": "1763603773" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 141, - "arrival": { - "time": "1763603886" - }, - "departure": { - "time": "1763603886" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 142, - "arrival": { - "time": "1763603999" - }, - "departure": { - "time": "1763603999" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 143, - "arrival": { - "time": "1763604066" - }, - "departure": { - "time": "1763604066" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 144, - "arrival": { - "time": "1763604120" - }, - "departure": { - "time": "1763604120" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 145, - "arrival": { - "time": "1763604152" - }, - "departure": { - "time": "1763604152" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 146, - "arrival": { - "time": "1763604222" - }, - "departure": { - "time": "1763604222" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 147, - "arrival": { - "time": "1763604268" - }, - "departure": { - "time": "1763604268" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 148, - "arrival": { - "time": "1763604293" - }, - "departure": { - "time": "1763604293" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 149, - "arrival": { - "time": "1763604324" - }, - "departure": { - "time": "1763604324" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 150, - "arrival": { - "time": "1763604384" - }, - "departure": { - "time": "1763604384" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 151, - "arrival": { - "time": "1763604480" - }, - "departure": { - "time": "1763604480" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 152, - "arrival": { - "time": "1763604480" - }, - "departure": { - "time": "1763604480" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 153, - "arrival": { - "time": "1763604823" - }, - "departure": { - "time": "1763604823" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 154, - "arrival": { - "time": "1763604929" - }, - "departure": { - "time": "1763604929" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 155, - "arrival": { - "time": "1763605015" - }, - "departure": { - "time": "1763605015" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 156, - "arrival": { - "time": "1763605183" - }, - "departure": { - "time": "1763605183" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 157, - "arrival": { - "time": "1763605288" - }, - "departure": { - "time": "1763605288" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 158, - "arrival": { - "time": "1763605369" - }, - "departure": { - "time": "1763605369" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 159, - "arrival": { - "time": "1763605440" - }, - "departure": { - "time": "1763605440" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 160, - "arrival": { - "time": "1763605574" - }, - "departure": { - "time": "1763605574" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 161, - "arrival": { - "time": "1763605639" - }, - "departure": { - "time": "1763605639" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 162, - "arrival": { - "time": "1763605707" - }, - "departure": { - "time": "1763605707" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 163, - "arrival": { - "time": "1763605746" - }, - "departure": { - "time": "1763605746" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 164, - "arrival": { - "time": "1763605783" - }, - "departure": { - "time": "1763605783" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 165, - "arrival": { - "time": "1763605820" - }, - "departure": { - "time": "1763605820" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 166, - "arrival": { - "time": "1763605858" - }, - "departure": { - "time": "1763605858" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 167, - "arrival": { - "time": "1763605895" - }, - "departure": { - "time": "1763605895" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 168, - "arrival": { - "time": "1763605934" - }, - "departure": { - "time": "1763605934" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 169, - "arrival": { - "time": "1763605980" - }, - "departure": { - "time": "1763605980" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 170, - "arrival": { - "time": "1763606021" - }, - "departure": { - "time": "1763606021" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 171, - "arrival": { - "time": "1763606100" - }, - "departure": { - "time": "1763606100" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 172, - "arrival": { - "time": "1763606177" - }, - "departure": { - "time": "1763606177" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 173, - "arrival": { - "time": "1763606244" - }, - "departure": { - "time": "1763606244" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 174, - "arrival": { - "time": "1763606298" - }, - "departure": { - "time": "1763606298" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 175, - "arrival": { - "time": "1763606460" - }, - "departure": { - "time": "1763606460" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 176, - "arrival": { - "time": "1763606689" - }, - "departure": { - "time": "1763606689" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 177, - "arrival": { - "time": "1763606765" - }, - "departure": { - "time": "1763606765" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 178, - "arrival": { - "time": "1763607060" - }, - "departure": { - "time": "1763607060" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17002" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5534643_21086", - "tripUpdate": { - "trip": { - "tripId": "5534643", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 139, - "arrival": { - "time": "1763603241" - }, - "departure": { - "time": "1763603241" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 140, - "arrival": { - "time": "1763603310" - }, - "departure": { - "time": "1763603310" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 141, - "arrival": { - "time": "1763603395" - }, - "departure": { - "time": "1763603395" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 142, - "arrival": { - "time": "1763603425" - }, - "departure": { - "time": "1763603425" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 143, - "arrival": { - "time": "1763603471" - }, - "departure": { - "time": "1763603471" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 144, - "arrival": { - "time": "1763603489" - }, - "departure": { - "time": "1763603489" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 145, - "arrival": { - "time": "1763603527" - }, - "departure": { - "time": "1763603527" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 146, - "arrival": { - "time": "1763603545" - }, - "departure": { - "time": "1763603545" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 147, - "arrival": { - "time": "1763603570" - }, - "departure": { - "time": "1763603570" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 148, - "arrival": { - "time": "1763603617" - }, - "departure": { - "time": "1763603617" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 149, - "arrival": { - "time": "1763603669" - }, - "departure": { - "time": "1763603669" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 150, - "arrival": { - "time": "1763603789" - }, - "departure": { - "time": "1763603789" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 151, - "arrival": { - "time": "1763604001" - }, - "departure": { - "time": "1763604001" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 152, - "arrival": { - "time": "1763604127" - }, - "departure": { - "time": "1763604127" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 153, - "arrival": { - "time": "1763604204" - }, - "departure": { - "time": "1763604204" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 154, - "arrival": { - "time": "1763604254" - }, - "departure": { - "time": "1763604254" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 155, - "arrival": { - "time": "1763604283" - }, - "departure": { - "time": "1763604283" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 156, - "arrival": { - "time": "1763604313" - }, - "departure": { - "time": "1763604313" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 157, - "arrival": { - "time": "1763604368" - }, - "departure": { - "time": "1763604368" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 158, - "arrival": { - "time": "1763604404" - }, - "departure": { - "time": "1763604404" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 159, - "arrival": { - "time": "1763604480" - }, - "departure": { - "time": "1763604480" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 160, - "arrival": { - "time": "1763604517" - }, - "departure": { - "time": "1763604517" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 161, - "arrival": { - "time": "1763604552" - }, - "departure": { - "time": "1763604552" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 162, - "arrival": { - "time": "1763604589" - }, - "departure": { - "time": "1763604589" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 163, - "arrival": { - "time": "1763604631" - }, - "departure": { - "time": "1763604631" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 164, - "arrival": { - "time": "1763604809" - }, - "departure": { - "time": "1763604809" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 165, - "arrival": { - "time": "1763605041" - }, - "departure": { - "time": "1763605041" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 166, - "arrival": { - "time": "1763605117" - }, - "departure": { - "time": "1763605117" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 167, - "arrival": { - "time": "1763605409" - }, - "departure": { - "time": "1763605409" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "21086" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5534679_14003", - "tripUpdate": { - "trip": { - "tripId": "5534679", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 159, - "arrival": { - "time": "1763602995" - }, - "departure": { - "time": "1763602995" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 160, - "arrival": { - "time": "1763603042" - }, - "departure": { - "time": "1763603042" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 161, - "arrival": { - "time": "1763603069" - }, - "departure": { - "time": "1763603069" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 162, - "arrival": { - "time": "1763603085" - }, - "departure": { - "time": "1763603085" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 163, - "arrival": { - "time": "1763603100" - }, - "departure": { - "time": "1763603100" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 164, - "arrival": { - "time": "1763603149" - }, - "departure": { - "time": "1763603149" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 165, - "arrival": { - "time": "1763603280" - }, - "departure": { - "time": "1763603280" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "14003" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525651_17006", - "tripUpdate": { - "trip": { - "tripId": "5525651", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 164, - "arrival": { - "time": "1763603023" - }, - "departure": { - "time": "1763603023" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 165, - "arrival": { - "time": "1763603060" - }, - "departure": { - "time": "1763603060" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 166, - "arrival": { - "time": "1763603098" - }, - "departure": { - "time": "1763603098" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 167, - "arrival": { - "time": "1763603135" - }, - "departure": { - "time": "1763603135" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 168, - "arrival": { - "time": "1763603174" - }, - "departure": { - "time": "1763603174" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 169, - "arrival": { - "time": "1763603220" - }, - "departure": { - "time": "1763603220" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 170, - "arrival": { - "time": "1763603261" - }, - "departure": { - "time": "1763603261" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 171, - "arrival": { - "time": "1763603340" - }, - "departure": { - "time": "1763603340" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 172, - "arrival": { - "time": "1763603417" - }, - "departure": { - "time": "1763603417" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 173, - "arrival": { - "time": "1763603484" - }, - "departure": { - "time": "1763603484" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 174, - "arrival": { - "time": "1763603538" - }, - "departure": { - "time": "1763603538" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 175, - "arrival": { - "time": "1763603700" - }, - "departure": { - "time": "1763603700" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 176, - "arrival": { - "time": "1763603929" - }, - "departure": { - "time": "1763603929" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 177, - "arrival": { - "time": "1763604005" - }, - "departure": { - "time": "1763604005" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 178, - "arrival": { - "time": "1763604300" - }, - "departure": { - "time": "1763604300" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "17006" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5534642_18024", - "tripUpdate": { - "trip": { - "tripId": "5534642", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 165, - "arrival": { - "time": "1763603251" - }, - "departure": { - "time": "1763603251" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 166, - "arrival": { - "time": "1763603327" - }, - "departure": { - "time": "1763603327" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 167, - "arrival": { - "time": "1763603619" - }, - "departure": { - "time": "1763603619" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "18024" - }, - "timestamp": "1763602907" - } - }, - { - "id": "5525684_14012", - "tripUpdate": { - "trip": { - "tripId": "5525684", - "scheduleRelationship": "SCHEDULED" - }, - "stopTimeUpdate": [ - { - "stopSequence": 167, - "arrival": { - "time": "1763603051" - }, - "departure": { - "time": "1763603051" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 168, - "arrival": { - "time": "1763603066" - }, - "departure": { - "time": "1763603066" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 169, - "arrival": { - "time": "1763603235" - }, - "departure": { - "time": "1763603235" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 170, - "arrival": { - "time": "1763603276" - }, - "departure": { - "time": "1763603276" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 171, - "arrival": { - "time": "1763603327" - }, - "departure": { - "time": "1763603327" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 172, - "arrival": { - "time": "1763603340" - }, - "departure": { - "time": "1763603340" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 173, - "arrival": { - "time": "1763603378" - }, - "departure": { - "time": "1763603378" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 174, - "arrival": { - "time": "1763603413" - }, - "departure": { - "time": "1763603413" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 175, - "arrival": { - "time": "1763603446" - }, - "departure": { - "time": "1763603446" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 176, - "arrival": { - "time": "1763603481" - }, - "departure": { - "time": "1763603481" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 177, - "arrival": { - "time": "1763603515" - }, - "departure": { - "time": "1763603515" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 178, - "arrival": { - "time": "1763603558" - }, - "departure": { - "time": "1763603558" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 179, - "arrival": { - "time": "1763603640" - }, - "departure": { - "time": "1763603640" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 180, - "arrival": { - "time": "1763603697" - }, - "departure": { - "time": "1763603697" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 181, - "arrival": { - "time": "1763603782" - }, - "departure": { - "time": "1763603782" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 182, - "arrival": { - "time": "1763603840" - }, - "departure": { - "time": "1763603840" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 183, - "arrival": { - "time": "1763603893" - }, - "departure": { - "time": "1763603893" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 184, - "arrival": { - "time": "1763603951" - }, - "departure": { - "time": "1763603951" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 185, - "arrival": { - "time": "1763604000" - }, - "departure": { - "time": "1763604000" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 186, - "arrival": { - "time": "1763604054" - }, - "departure": { - "time": "1763604054" - }, - "scheduleRelationship": "SCHEDULED" - }, - { - "stopSequence": 187, - "arrival": { - "time": "1763604120" - }, - "departure": { - "time": "1763604120" - }, - "scheduleRelationship": "SCHEDULED" - } - ], - "vehicle": { - "id": "14012" - }, - "timestamp": "1763602907" - } - } - ] -} \ No newline at end of file diff --git a/vehicles.json b/vehicles.json deleted file mode 100644 index de36d3d..0000000 --- a/vehicles.json +++ /dev/null @@ -1,6689 +0,0 @@ -{ - "header": { - "gtfsRealtimeVersion": "2.0", - "incrementality": "FULL_DATASET", - "timestamp": "1763602908" - }, - "entity": [ - { - "id": "21022", - "vehicle": { - "trip": { - "tripId": "5534778", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.744659423828125, - "longitude": -111.84798431396484, - "bearing": 181.3000030517578, - "speed": 3.2633919715881348 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "21022", - "label": "21022" - } - } - }, - { - "id": "22006", - "vehicle": { - "trip": { - "tripId": "5618174", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.28224182128906, - "longitude": -111.68311309814453, - "bearing": 90.5, - "speed": 12.517120361328125 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "22006", - "label": "22006" - } - } - }, - { - "id": "09036", - "vehicle": { - "trip": { - "tripId": "5718385", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.27544403076172, - "longitude": -111.72755432128906, - "bearing": 144.5, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "09036", - "label": "09036" - } - } - }, - { - "id": "17051", - "vehicle": { - "trip": { - "tripId": "5529155", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.68214797973633, - "longitude": -111.93855285644531, - "bearing": 259.8999938964844, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602902", - "vehicle": { - "id": "17051", - "label": "17051" - } - } - }, - { - "id": "21012", - "vehicle": { - "trip": { - "tripId": "5618163", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.38651657104492, - "longitude": -111.82128143310547, - "bearing": 117.5, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602895", - "vehicle": { - "id": "21012", - "label": "21012" - } - } - }, - { - "id": "15006", - "vehicle": { - "trip": { - "tripId": "5526297", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.73090744018555, - "longitude": -111.96978759765625, - "bearing": 269.20001220703125, - "speed": 10.55014419555664 - }, - "timestamp": "1763602896", - "vehicle": { - "id": "15006", - "label": "15006" - } - } - }, - { - "id": "18203", - "vehicle": { - "trip": { - "tripId": "5531096", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.60697555541992, - "longitude": -111.89541625976562, - "bearing": 1.2999999523162842, - "speed": 7.286752223968506 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "18203", - "label": "18203" - } - } - }, - { - "id": "19004", - "vehicle": { - "trip": { - "tripId": "5526184", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.693546295166016, - "longitude": -111.96062469482422, - "bearing": 286.20001220703125, - "speed": 0 - }, - "timestamp": "1763602896", - "vehicle": { - "id": "19004", - "label": "19004" - } - } - }, - { - "id": "L3", - "vehicle": { - "trip": { - "tripId": "5525799", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.157527923583984, - "longitude": -112.0391616821289, - "bearing": 343.6199951171875, - "speed": 30.8636417388916 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "L3", - "label": "L3" - } - } - }, - { - "id": "13040", - "vehicle": { - "trip": { - "tripId": "5523848", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.760704040527344, - "longitude": -111.91378021240234, - "bearing": 268.79998779296875, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602900", - "vehicle": { - "id": "13040", - "label": "13040" - } - } - }, - { - "id": "15002", - "vehicle": { - "trip": { - "tripId": "5523880", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.760520935058594, - "longitude": -111.88316345214844, - "bearing": 88.9000015258789, - "speed": 11.354816436767578 - }, - "timestamp": "1763602900", - "vehicle": { - "id": "15002", - "label": "15002" - } - } - }, - { - "id": "17123", - "vehicle": { - "trip": { - "tripId": "5617756", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.22502517700195, - "longitude": -111.66081237792969, - "bearing": 101.5999984741211, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "17123", - "label": "17123" - } - } - }, - { - "id": "17024", - "vehicle": { - "trip": { - "tripId": "5528914", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.65296936035156, - "longitude": -112.01579284667969, - "bearing": 90.4000015258789, - "speed": 14.573504447937012 - }, - "timestamp": "1763602902", - "vehicle": { - "id": "17024", - "label": "17024" - } - } - }, - { - "id": "1117A", - "vehicle": { - "trip": { - "tripId": "5575531", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.694358825683594, - "longitude": -111.95965576171875, - "bearing": 270.1000061035156, - "speed": 0 - }, - "timestamp": "1763602893", - "vehicle": { - "id": "1117A", - "label": "1117A" - } - } - }, - { - "id": "09031", - "vehicle": { - "trip": { - "tripId": "5718413", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.311729431152344, - "longitude": -111.67668151855469, - "bearing": 359.5, - "speed": 3.352799892425537 - }, - "timestamp": "1763602896", - "vehicle": { - "id": "09031", - "label": "09031" - } - } - }, - { - "id": "13051", - "vehicle": { - "trip": { - "tripId": "5618030", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.224090576171875, - "longitude": -111.660888671875, - "bearing": 196, - "speed": 0.44703999161720276 - }, - "timestamp": "1763602895", - "vehicle": { - "id": "13051", - "label": "13051" - } - } - }, - { - "id": "17013", - "vehicle": { - "trip": { - "tripId": "5525655", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.861366271972656, - "longitude": -111.8963623046875, - "bearing": 31.5, - "speed": 8.359647750854492 - }, - "timestamp": "1763602895", - "vehicle": { - "id": "17013", - "label": "17013" - } - } - }, - { - "id": "13052", - "vehicle": { - "trip": { - "tripId": "5618175", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.35004806518555, - "longitude": -111.72966766357422, - "bearing": 139.39999389648438, - "speed": 0 - }, - "timestamp": "1763602900", - "vehicle": { - "id": "13052", - "label": "13052" - } - } - }, - { - "id": "09042", - "vehicle": { - "trip": { - "tripId": "5718384", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.32643508911133, - "longitude": -111.7103500366211, - "bearing": 91.19999694824219, - "speed": 6.795008182525635 - }, - "timestamp": "1763602900", - "vehicle": { - "id": "09042", - "label": "09042" - } - } - }, - { - "id": "17007", - "vehicle": { - "trip": { - "tripId": "5529989", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.241703033447266, - "longitude": -111.978515625, - "bearing": 180, - "speed": 14.484095573425293 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "17007", - "label": "17007" - } - } - }, - { - "id": "18205", - "vehicle": { - "trip": { - "tripId": "5531066", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.59503173828125, - "longitude": -111.90072631835938, - "bearing": 129.39999389648438, - "speed": 5.140960216522217 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "18205", - "label": "18205" - } - } - }, - { - "id": "19002", - "vehicle": { - "trip": { - "tripId": "5525045", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.70159149169922, - "longitude": -111.85136413574219, - "bearing": 164.6999969482422, - "speed": 8.225536346435547 - }, - "timestamp": "1763602892", - "vehicle": { - "id": "19002", - "label": "19002" - } - } - }, - { - "id": "14010", - "vehicle": { - "trip": { - "tripId": "5530050", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.17261505126953, - "longitude": -111.98340606689453, - "bearing": 194.60000610351562, - "speed": 0.35763201117515564 - }, - "timestamp": "1763602893", - "vehicle": { - "id": "14010", - "label": "14010" - } - } - }, - { - "id": "16005", - "vehicle": { - "trip": { - "tripId": "5530145", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.163631439208984, - "longitude": -112.0652084350586, - "bearing": 93.4000015258789, - "speed": 0 - }, - "timestamp": "1763602903", - "vehicle": { - "id": "16005", - "label": "16005" - } - } - }, - { - "id": "1151A", - "vehicle": { - "trip": { - "tripId": "5619829", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.76262664794922, - "longitude": -111.83601379394531, - "bearing": 165, - "speed": 2.709062337875366 - }, - "timestamp": "1763602906", - "vehicle": { - "id": "1151A", - "label": "1151A" - } - } - }, - { - "id": "21020", - "vehicle": { - "trip": { - "tripId": "5528583", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.760704040527344, - "longitude": -111.85137176513672, - "bearing": 270.29998779296875, - "speed": 0.5811520218849182 - }, - "timestamp": "1763602896", - "vehicle": { - "id": "21020", - "label": "21020" - } - } - }, - { - "id": "22103", - "vehicle": { - "trip": { - "tripId": "5529589", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.224735260009766, - "longitude": -111.98004150390625, - "bearing": 1.899999976158142, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "22103", - "label": "22103" - } - } - }, - { - "id": "10001", - "vehicle": { - "trip": { - "tripId": "5530051", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.24795150756836, - "longitude": -111.97005462646484, - "bearing": 183, - "speed": 0 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "10001", - "label": "10001" - } - } - }, - { - "id": "21083", - "vehicle": { - "trip": { - "tripId": "5534665", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.1426887512207, - "longitude": -111.91771697998047, - "bearing": 153.39999389648438, - "speed": 15.735808372497559 - }, - "timestamp": "1763602904", - "vehicle": { - "id": "21083", - "label": "21083" - } - } - }, - { - "id": "19010", - "vehicle": { - "trip": { - "tripId": "5526545", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.725440979003906, - "longitude": -111.86259460449219, - "bearing": 270.8999938964844, - "speed": 7.733791828155518 - }, - "timestamp": "1763602903", - "vehicle": { - "id": "19010", - "label": "19010" - } - } - }, - { - "id": "24202", - "vehicle": { - "trip": { - "tripId": "5531010", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.588470458984375, - "longitude": -111.88563537597656, - "bearing": 189.3000030517578, - "speed": 0 - }, - "timestamp": "1763602903", - "vehicle": { - "id": "24202", - "label": "24202" - } - } - }, - { - "id": "17048", - "vehicle": { - "trip": { - "tripId": "5525046", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.76491928100586, - "longitude": -111.89341735839844, - "bearing": 89.19999694824219, - "speed": 6.705599784851074 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "17048", - "label": "17048" - } - } - }, - { - "id": "11030", - "vehicle": { - "trip": { - "tripId": "5530468", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.195518493652344, - "longitude": -111.94026184082031, - "bearing": 317.5, - "speed": 8.180831909179688 - }, - "timestamp": "1763602896", - "vehicle": { - "id": "11030", - "label": "11030" - } - } - }, - { - "id": "18006", - "vehicle": { - "trip": { - "tripId": "5528285", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.566314697265625, - "longitude": -111.90371704101562, - "bearing": 343.79998779296875, - "speed": 1.2517119646072388 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "18006", - "label": "18006" - } - } - }, - { - "id": "24010", - "vehicle": { - "trip": { - "tripId": "5525495", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.74142837524414, - "longitude": -111.8653335571289, - "bearing": 0.800000011920929, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "24010", - "label": "24010" - } - } - }, - { - "id": "23020", - "vehicle": { - "trip": { - "tripId": "5527224", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.66341018676758, - "longitude": -111.93896484375, - "bearing": 180.10000610351562, - "speed": 14.260576248168945 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "23020", - "label": "23020" - } - } - }, - { - "id": "1007B", - "vehicle": { - "trip": { - "tripId": "5619653", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.63290786743164, - "longitude": -111.89840698242188, - "bearing": 185, - "speed": 1.7926305532455444 - }, - "timestamp": "1763602875", - "vehicle": { - "id": "1007B", - "label": "1007B" - } - } - }, - { - "id": "11025", - "vehicle": { - "trip": { - "tripId": "5530499", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.0893440246582, - "longitude": -111.9918441772461, - "bearing": 268.8999938964844, - "speed": 11.310111999511719 - }, - "timestamp": "1763602900", - "vehicle": { - "id": "11025", - "label": "11025" - } - } - }, - { - "id": "12004", - "vehicle": { - "trip": { - "tripId": "5527290", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.6537971496582, - "longitude": -111.93867492675781, - "bearing": 355.20001220703125, - "speed": 0 - }, - "timestamp": "1763602891", - "vehicle": { - "id": "12004", - "label": "12004" - } - } - }, - { - "id": "23017", - "vehicle": { - "trip": { - "tripId": "5526956", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.779029846191406, - "longitude": -111.9025650024414, - "bearing": 180.8000030517578, - "speed": 11.533632278442383 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "23017", - "label": "23017" - } - } - }, - { - "id": "1167B", - "vehicle": { - "trip": { - "tripId": "5575528", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.77002716064453, - "longitude": -111.90248107910156, - "bearing": 2.299999952316284, - "speed": 3.1739840507507324 - }, - "timestamp": "1763602894", - "vehicle": { - "id": "1167B", - "label": "1167B" - } - } - }, - { - "id": "14012", - "vehicle": { - "trip": { - "tripId": "5525684", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.84138870239258, - "longitude": -111.91057586669922, - "bearing": 203.3000030517578, - "speed": 0 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "14012", - "label": "14012" - } - } - }, - { - "id": "17203", - "vehicle": { - "trip": { - "tripId": "5535362", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.63322448730469, - "longitude": -111.89803314208984, - "bearing": 144.3000030517578, - "speed": 0 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "17203", - "label": "17203" - } - } - }, - { - "id": "22017", - "vehicle": { - "trip": { - "tripId": "5617914", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.243072509765625, - "longitude": -111.65692138671875, - "bearing": 269.5, - "speed": 7.867904186248779 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "22017", - "label": "22017" - } - } - }, - { - "id": "23016", - "vehicle": { - "trip": { - "tripId": "5527996", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.707481384277344, - "longitude": -112.1093978881836, - "bearing": 179.5, - "speed": 9.968992233276367 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "23016", - "label": "23016" - } - } - }, - { - "id": "22019", - "vehicle": { - "trip": { - "tripId": "5618219", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.22499084472656, - "longitude": -111.66172790527344, - "bearing": 112.9000015258789, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "22019", - "label": "22019" - } - } - }, - { - "id": "24201", - "vehicle": { - "trip": { - "tripId": "5530967", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.57870101928711, - "longitude": -111.8331298828125, - "bearing": 280.20001220703125, - "speed": 0 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "24201", - "label": "24201" - } - } - }, - { - "id": "15004", - "vehicle": { - "trip": { - "tripId": "5534624", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.70979690551758, - "longitude": -111.95813751220703, - "bearing": 180.6999969482422, - "speed": 0 - }, - "timestamp": "1763602900", - "vehicle": { - "id": "15004", - "label": "15004" - } - } - }, - { - "id": "15017", - "vehicle": { - "trip": { - "tripId": "5524543", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.76509475708008, - "longitude": -111.90351104736328, - "bearing": 271.1000061035156, - "speed": 7.4655680656433105 - }, - "timestamp": "1763602893", - "vehicle": { - "id": "15017", - "label": "15017" - } - } - }, - { - "id": "18104", - "vehicle": { - "trip": { - "tripId": "5529326", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.22296142578125, - "longitude": -111.97621154785156, - "bearing": 181.3000030517578, - "speed": 0 - }, - "timestamp": "1763602893", - "vehicle": { - "id": "18104", - "label": "18104" - } - } - }, - { - "id": "17023", - "vehicle": { - "trip": { - "tripId": "5534830", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.64885330200195, - "longitude": -112.00553131103516, - "bearing": 359.3999938964844, - "speed": 12.606528282165527 - }, - "timestamp": "1763602895", - "vehicle": { - "id": "17023", - "label": "17023" - } - } - }, - { - "id": "17002", - "vehicle": { - "trip": { - "tripId": "5525652", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.09449005126953, - "longitude": -112.0131607055664, - "bearing": 148.3000030517578, - "speed": 0.08940800279378891 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "17002", - "label": "17002" - } - } - }, - { - "id": "25009", - "vehicle": { - "trip": { - "tripId": "5524130", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.760589599609375, - "longitude": -111.93828582763672, - "bearing": 70.30000305175781, - "speed": 2.369312047958374 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "25009", - "label": "25009" - } - } - }, - { - "id": "1124B", - "vehicle": { - "trip": { - "tripId": "5575452", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.752296447753906, - "longitude": -111.8968276977539, - "bearing": 179.89999389648438, - "speed": 9.11961555480957 - }, - "timestamp": "1763602903", - "vehicle": { - "id": "1124B", - "label": "1124B" - } - } - }, - { - "id": "CC106", - "vehicle": { - "trip": { - "tripId": "5525855", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.69980239868164, - "longitude": -111.90411376953125, - "bearing": 165.3300018310547, - "speed": 30.72058868408203 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "CC106", - "label": "CC106" - } - } - }, - { - "id": "15009", - "vehicle": { - "trip": { - "tripId": "5524911", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.77400588989258, - "longitude": -111.91682434082031, - "bearing": 359.5, - "speed": 13.008864402770996 - }, - "timestamp": "1763602892", - "vehicle": { - "id": "15009", - "label": "15009" - } - } - }, - { - "id": "22009", - "vehicle": { - "trip": { - "tripId": "5620507", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.12016677856445, - "longitude": -111.64029693603516, - "bearing": 27.5, - "speed": 0 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "22009", - "label": "22009" - } - } - }, - { - "id": "11020", - "vehicle": { - "trip": { - "tripId": "5530467", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.14078903198242, - "longitude": -112.0453872680664, - "bearing": 176.89999389648438, - "speed": 11.086591720581055 - }, - "timestamp": "1763602894", - "vehicle": { - "id": "11020", - "label": "11020" - } - } - }, - { - "id": "19207", - "vehicle": { - "trip": { - "tripId": "5530870", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.609588623046875, - "longitude": -112.0269775390625, - "bearing": 273.3999938964844, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602904", - "vehicle": { - "id": "19207", - "label": "19207" - } - } - }, - { - "id": "23024", - "vehicle": { - "trip": { - "tripId": "5526891", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.72697830200195, - "longitude": -111.88833618164062, - "bearing": 179.5, - "speed": 4.068064212799072 - }, - "timestamp": "1763602894", - "vehicle": { - "id": "23024", - "label": "23024" - } - } - }, - { - "id": "1158B", - "vehicle": { - "trip": { - "tripId": "5619827", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.689476013183594, - "longitude": -111.89701080322266, - "bearing": 180.10000610351562, - "speed": 14.484095573425293 - }, - "timestamp": "1763602895", - "vehicle": { - "id": "1158B", - "label": "1158B" - } - } - }, - { - "id": "12010", - "vehicle": { - "trip": { - "tripId": "5526538", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.76458740234375, - "longitude": -111.84505462646484, - "bearing": 160.8000030517578, - "speed": 0 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "12010", - "label": "12010" - } - } - }, - { - "id": "21010", - "vehicle": { - "trip": { - "tripId": "5618169", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.2713508605957, - "longitude": -111.68382263183594, - "bearing": 161.89999389648438, - "speed": 13.098272323608398 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "21010", - "label": "21010" - } - } - }, - { - "id": "L18", - "vehicle": { - "trip": { - "tripId": "5525806", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.225460052490234, - "longitude": -111.66144561767578, - "bearing": 93.23999786376953, - "speed": 0 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "L18", - "label": "L18" - } - } - }, - { - "id": "1037A", - "vehicle": { - "trip": { - "tripId": "5619566", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.76827621459961, - "longitude": -111.8909912109375, - "bearing": 0.5, - "speed": 0 - }, - "timestamp": "1763602900", - "vehicle": { - "id": "1037A", - "label": "1037A" - } - } - }, - { - "id": "L20", - "vehicle": { - "trip": { - "tripId": "5525815", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.39961624145508, - "longitude": -111.86676025390625, - "bearing": 317.80999755859375, - "speed": 22.186595916748047 - }, - "timestamp": "1763602900", - "vehicle": { - "id": "L20", - "label": "L20" - } - } - }, - { - "id": "18013", - "vehicle": { - "trip": { - "tripId": "5525079", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.68693923950195, - "longitude": -111.8449478149414, - "bearing": 344.79998779296875, - "speed": 1.519935965538025 - }, - "timestamp": "1763602902", - "vehicle": { - "id": "18013", - "label": "18013" - } - } - }, - { - "id": "21015", - "vehicle": { - "trip": { - "tripId": "5529193", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.687129974365234, - "longitude": -111.87909698486328, - "bearing": 269.8999938964844, - "speed": 13.500608444213867 - }, - "timestamp": "1763602902", - "vehicle": { - "id": "21015", - "label": "21015" - } - } - }, - { - "id": "23001", - "vehicle": { - "trip": { - "tripId": "5528071", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.6965446472168, - "longitude": -112.0133056640625, - "bearing": 90.0999984741211, - "speed": 13.679424285888672 - }, - "timestamp": "1763602893", - "vehicle": { - "id": "23001", - "label": "23001" - } - } - }, - { - "id": "12011", - "vehicle": { - "trip": { - "tripId": "5526613", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.72536087036133, - "longitude": -111.87129974365234, - "bearing": 88.5, - "speed": 6.839712142944336 - }, - "timestamp": "1763602904", - "vehicle": { - "id": "12011", - "label": "12011" - } - } - }, - { - "id": "1109B", - "vehicle": { - "trip": { - "tripId": "5619754", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.59562301635742, - "longitude": -111.96870422363281, - "bearing": 71.0999984741211, - "speed": 17.300447463989258 - }, - "timestamp": "1763602895", - "vehicle": { - "id": "1109B", - "label": "1109B" - } - } - }, - { - "id": "13031", - "vehicle": { - "trip": { - "tripId": "5525236", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.780189514160156, - "longitude": -111.9217758178711, - "bearing": 89.9000015258789, - "speed": 9.253727912902832 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "13031", - "label": "13031" - } - } - }, - { - "id": "13001", - "vehicle": { - "trip": { - "tripId": "5534716", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.77714920043945, - "longitude": -111.94671630859375, - "bearing": 90.69999694824219, - "speed": 0 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "13001", - "label": "13001" - } - } - }, - { - "id": "1001A", - "vehicle": { - "trip": { - "tripId": "5619654", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.70219039916992, - "longitude": -111.89702606201172, - "bearing": 181.3000030517578, - "speed": 13.366496086120605 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "1001A", - "label": "1001A" - } - } - }, - { - "id": "23110", - "vehicle": { - "trip": { - "tripId": "5525496", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.633060455322266, - "longitude": -111.86583709716797, - "bearing": 359.1000061035156, - "speed": 10.997183799743652 - }, - "timestamp": "1763602894", - "vehicle": { - "id": "23110", - "label": "23110" - } - } - }, - { - "id": "14004", - "vehicle": { - "trip": { - "tripId": "5525689", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.23583221435547, - "longitude": -111.97891998291016, - "bearing": 1.899999976158142, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602895", - "vehicle": { - "id": "14004", - "label": "14004" - } - } - }, - { - "id": "18002", - "vehicle": { - "trip": { - "tripId": "5529194", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.687416076660156, - "longitude": -111.7966537475586, - "bearing": 45.900001525878906, - "speed": 0 - }, - "timestamp": "1763602895", - "vehicle": { - "id": "18002", - "label": "18002" - } - } - }, - { - "id": "23025", - "vehicle": { - "trip": { - "tripId": "5526959", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.67143630981445, - "longitude": -111.88819885253906, - "bearing": 359.79998779296875, - "speed": 11.310111999511719 - }, - "timestamp": "1763602896", - "vehicle": { - "id": "23025", - "label": "23025" - } - } - }, - { - "id": "17011", - "vehicle": { - "trip": { - "tripId": "5525686", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.06308364868164, - "longitude": -111.9690933227539, - "bearing": 143.1999969482422, - "speed": 12.070079803466797 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "17011", - "label": "17011" - } - } - }, - { - "id": "17117", - "vehicle": { - "trip": { - "tripId": "5617607", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.24305725097656, - "longitude": -111.65833282470703, - "bearing": 271.5, - "speed": 2.0116798877716064 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "17117", - "label": "17117" - } - } - }, - { - "id": "17125", - "vehicle": { - "trip": { - "tripId": "5617630", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.280479431152344, - "longitude": -111.72594451904297, - "bearing": 149.89999389648438, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "17125", - "label": "17125" - } - } - }, - { - "id": "13039", - "vehicle": { - "trip": { - "tripId": "5523849", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.68773651123047, - "longitude": -111.79685974121094, - "bearing": 196.10000610351562, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "13039", - "label": "13039" - } - } - }, - { - "id": "19203", - "vehicle": { - "trip": { - "tripId": "5530901", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.61046600341797, - "longitude": -111.8932876586914, - "bearing": 84.19999694824219, - "speed": 0 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "19203", - "label": "19203" - } - } - }, - { - "id": "18101", - "vehicle": { - "trip": { - "tripId": "5530345", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.05154037475586, - "longitude": -111.98796081542969, - "bearing": 0.8999999761581421, - "speed": 12.114784240722656 - }, - "timestamp": "1763602900", - "vehicle": { - "id": "18101", - "label": "18101" - } - } - }, - { - "id": "1146A", - "vehicle": { - "trip": { - "tripId": "5575601", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.723594665527344, - "longitude": -111.89676666259766, - "bearing": 0.6000000238418579, - "speed": 0 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "1146A", - "label": "1146A" - } - } - }, - { - "id": "18209", - "vehicle": { - "trip": { - "tripId": "5535289", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.67998504638672, - "longitude": -111.96760559082031, - "bearing": 180.10000610351562, - "speed": 11.399519920349121 - }, - "timestamp": "1763602903", - "vehicle": { - "id": "18209", - "label": "18209" - } - } - }, - { - "id": "19007", - "vehicle": { - "trip": { - "tripId": "5534906", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.49909210205078, - "longitude": -111.93879699707031, - "bearing": 177, - "speed": 11.667743682861328 - }, - "timestamp": "1763602902", - "vehicle": { - "id": "19007", - "label": "19007" - } - } - }, - { - "id": "09039", - "vehicle": { - "trip": { - "tripId": "5617884", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.27896499633789, - "longitude": -111.72756958007812, - "bearing": 269.6000061035156, - "speed": 8.896096229553223 - }, - "timestamp": "1763602893", - "vehicle": { - "id": "09039", - "label": "09039" - } - } - }, - { - "id": "18103", - "vehicle": { - "trip": { - "tripId": "5530313", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.09471893310547, - "longitude": -112.0133056640625, - "bearing": 209.60000610351562, - "speed": 0 - }, - "timestamp": "1763602893", - "vehicle": { - "id": "18103", - "label": "18103" - } - } - }, - { - "id": "17049", - "vehicle": { - "trip": { - "tripId": "5525497", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.63362121582031, - "longitude": -111.89820098876953, - "bearing": 190, - "speed": 0 - }, - "timestamp": "1763602894", - "vehicle": { - "id": "17049", - "label": "17049" - } - } - }, - { - "id": "17101", - "vehicle": { - "trip": { - "tripId": "5617705", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.2806282043457, - "longitude": -111.72608947753906, - "bearing": 150.10000610351562, - "speed": 0 - }, - "timestamp": "1763602896", - "vehicle": { - "id": "17101", - "label": "17101" - } - } - }, - { - "id": "10003", - "vehicle": { - "trip": { - "tripId": "5530049", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.228389739990234, - "longitude": -111.97860717773438, - "bearing": 0.800000011920929, - "speed": 3.4422080516815186 - }, - "timestamp": "1763602895", - "vehicle": { - "id": "10003", - "label": "10003" - } - } - }, - { - "id": "1013A", - "vehicle": { - "trip": { - "tripId": "5619568", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.61063003540039, - "longitude": -111.89325714111328, - "bearing": 321.79998779296875, - "speed": 0 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "1013A", - "label": "1013A" - } - } - }, - { - "id": "23014", - "vehicle": { - "trip": { - "tripId": "5527997", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.69668197631836, - "longitude": -111.98635864257812, - "bearing": 263.70001220703125, - "speed": 0 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "23014", - "label": "23014" - } - } - }, - { - "id": "13005", - "vehicle": { - "trip": { - "tripId": "5524155", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.769859313964844, - "longitude": -111.83872985839844, - "bearing": 321.1000061035156, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "13005", - "label": "13005" - } - } - }, - { - "id": "18102", - "vehicle": { - "trip": { - "tripId": "5530312", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.07541275024414, - "longitude": -111.98787689208984, - "bearing": 182.1999969482422, - "speed": 10.103103637695312 - }, - "timestamp": "1763602900", - "vehicle": { - "id": "18102", - "label": "18102" - } - } - }, - { - "id": "24205", - "vehicle": { - "trip": { - "tripId": "5530668", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.52833938598633, - "longitude": -111.89583587646484, - "bearing": 180.10000610351562, - "speed": 5.990335941314697 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "24205", - "label": "24205" - } - } - }, - { - "id": "17103", - "vehicle": { - "trip": { - "tripId": "5617809", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.225502014160156, - "longitude": -111.65865325927734, - "bearing": 359.79998779296875, - "speed": 12.1594877243042 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "17103", - "label": "17103" - } - } - }, - { - "id": "17104", - "vehicle": { - "trip": { - "tripId": "5617612", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.22505569458008, - "longitude": -111.66123962402344, - "bearing": 0, - "speed": 0 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "17104", - "label": "17104" - } - } - }, - { - "id": "22012", - "vehicle": { - "trip": { - "tripId": "5620508", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.03228759765625, - "longitude": -111.75440216064453, - "bearing": 178.60000610351562, - "speed": 0 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "22012", - "label": "22012" - } - } - }, - { - "id": "17077", - "vehicle": { - "trip": { - "tripId": "5530250", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.030181884765625, - "longitude": -111.9250717163086, - "bearing": 269.6000061035156, - "speed": 0.7152640223503113 - }, - "timestamp": "1763602902", - "vehicle": { - "id": "17077", - "label": "17077" - } - } - }, - { - "id": "09035", - "vehicle": { - "trip": { - "tripId": "5617915", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.28233337402344, - "longitude": -111.71715545654297, - "bearing": 294.3999938964844, - "speed": 5.677408218383789 - }, - "timestamp": "1763602903", - "vehicle": { - "id": "09035", - "label": "09035" - } - } - }, - { - "id": "17053", - "vehicle": { - "trip": { - "tripId": "5526573", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.751060485839844, - "longitude": -111.83086395263672, - "bearing": 160.1999969482422, - "speed": 1.7434560060501099 - }, - "timestamp": "1763602893", - "vehicle": { - "id": "17053", - "label": "17053" - } - } - }, - { - "id": "23007", - "vehicle": { - "trip": { - "tripId": "5527940", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.696659088134766, - "longitude": -111.96988677978516, - "bearing": 269.79998779296875, - "speed": 10.95248031616211 - }, - "timestamp": "1763602894", - "vehicle": { - "id": "23007", - "label": "23007" - } - } - }, - { - "id": "22106", - "vehicle": { - "trip": { - "tripId": "5529705", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.213260650634766, - "longitude": -111.94831085205078, - "bearing": 2.9000000953674316, - "speed": 6.482079982757568 - }, - "timestamp": "1763602895", - "vehicle": { - "id": "22106", - "label": "22106" - } - } - }, - { - "id": "20008", - "vehicle": { - "trip": { - "tripId": "5528714", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.66001892089844, - "longitude": -111.8952865600586, - "bearing": 220, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602896", - "vehicle": { - "id": "20008", - "label": "20008" - } - } - }, - { - "id": "1038B", - "vehicle": { - "trip": { - "tripId": "5619569", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.55911636352539, - "longitude": -111.88080596923828, - "bearing": 173.39999389648438, - "speed": 19.40153694152832 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "1038B", - "label": "1038B" - } - } - }, - { - "id": "17045", - "vehicle": { - "trip": { - "tripId": "5526628", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.76308059692383, - "longitude": -111.83572387695312, - "bearing": 346.1000061035156, - "speed": 0.7599679827690125 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "17045", - "label": "17045" - } - } - }, - { - "id": "17055", - "vehicle": { - "trip": { - "tripId": "5529223", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.68700408935547, - "longitude": -111.8598861694336, - "bearing": 90.5999984741211, - "speed": 5.453887939453125 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "17055", - "label": "17055" - } - } - }, - { - "id": "23008", - "vehicle": { - "trip": { - "tripId": "5527966", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.70111846923828, - "longitude": -111.89715576171875, - "bearing": 359.6000061035156, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "23008", - "label": "23008" - } - } - }, - { - "id": "17040", - "vehicle": { - "trip": { - "tripId": "5534811", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.665374755859375, - "longitude": -112.0035629272461, - "bearing": 179.39999389648438, - "speed": 9.209024429321289 - }, - "timestamp": "1763602903", - "vehicle": { - "id": "17040", - "label": "17040" - } - } - }, - { - "id": "11003", - "vehicle": { - "trip": { - "tripId": "5618029", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.308349609375, - "longitude": -111.75343322753906, - "bearing": 350.8999938964844, - "speed": 13.768832206726074 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "11003", - "label": "11003" - } - } - }, - { - "id": "17039", - "vehicle": { - "trip": { - "tripId": "5528882", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.63904571533203, - "longitude": -111.97647094726562, - "bearing": 0.20000000298023224, - "speed": 9.790176391601562 - }, - "timestamp": "1763602891", - "vehicle": { - "id": "17039", - "label": "17039" - } - } - }, - { - "id": "20051", - "vehicle": { - "trip": { - "tripId": "5528507", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.7608757019043, - "longitude": -111.82611083984375, - "bearing": 142.39999389648438, - "speed": 8.761983871459961 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "20051", - "label": "20051" - } - } - }, - { - "id": "21089", - "vehicle": { - "trip": { - "tripId": "5617120", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.36185836791992, - "longitude": -111.9167709350586, - "bearing": 89.69999694824219, - "speed": 0 - }, - "timestamp": "1763602902", - "vehicle": { - "id": "21089", - "label": "21089" - } - } - }, - { - "id": "22020", - "vehicle": { - "trip": { - "tripId": "5618159", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.42573165893555, - "longitude": -111.89611053466797, - "bearing": 234.60000610351562, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602902", - "vehicle": { - "id": "22020", - "label": "22020" - } - } - }, - { - "id": "23004", - "vehicle": { - "trip": { - "tripId": "5527726", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.69981384277344, - "longitude": -111.87651824951172, - "bearing": 90.0999984741211, - "speed": 0 - }, - "timestamp": "1763602903", - "vehicle": { - "id": "23004", - "label": "23004" - } - } - }, - { - "id": "1153B", - "vehicle": { - "trip": { - "tripId": "5619828", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.757503509521484, - "longitude": -111.89112091064453, - "bearing": 180.10000610351562, - "speed": 3.8892478942871094 - }, - "timestamp": "1763602893", - "vehicle": { - "id": "1153B", - "label": "1153B" - } - } - }, - { - "id": "22015", - "vehicle": { - "trip": { - "tripId": "5620474", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.03797912597656, - "longitude": -111.73396301269531, - "bearing": 180.8000030517578, - "speed": 0 - }, - "timestamp": "1763602894", - "vehicle": { - "id": "22015", - "label": "22015" - } - } - }, - { - "id": "24003", - "vehicle": { - "trip": { - "tripId": "5526316", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.76430892944336, - "longitude": -111.9098892211914, - "bearing": 167.6999969482422, - "speed": 0 - }, - "timestamp": "1763602904", - "vehicle": { - "id": "24003", - "label": "24003" - } - } - }, - { - "id": "1175A", - "vehicle": { - "trip": { - "tripId": "5575674", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.722801208496094, - "longitude": -111.86158752441406, - "bearing": 89.0999984741211, - "speed": 0 - }, - "timestamp": "1763602895", - "vehicle": { - "id": "1175A", - "label": "1175A" - } - } - }, - { - "id": "12006", - "vehicle": { - "trip": { - "tripId": "5528584", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.764400482177734, - "longitude": -111.84488677978516, - "bearing": 163.10000610351562, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602896", - "vehicle": { - "id": "12006", - "label": "12006" - } - } - }, - { - "id": "17107", - "vehicle": { - "trip": { - "tripId": "5617709", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.258094787597656, - "longitude": -111.66203308105469, - "bearing": 139, - "speed": 8.426704406738281 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "17107", - "label": "17107" - } - } - }, - { - "id": "18011", - "vehicle": { - "trip": { - "tripId": "5528721", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.67051315307617, - "longitude": -111.94033813476562, - "bearing": 359.3999938964844, - "speed": 6.884416103363037 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "18011", - "label": "18011" - } - } - }, - { - "id": "17006", - "vehicle": { - "trip": { - "tripId": "5525651", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.20771026611328, - "longitude": -111.9706802368164, - "bearing": 3.299999952316284, - "speed": 0.9387840032577515 - }, - "timestamp": "1763602900", - "vehicle": { - "id": "17006", - "label": "17006" - } - } - }, - { - "id": "L2", - "vehicle": { - "trip": { - "tripId": "5525822", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.88093948364258, - "longitude": -111.90299987792969, - "bearing": 18.889999389648438, - "speed": 0.035763200372457504 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "L2", - "label": "L2" - } - } - }, - { - "id": "15003", - "vehicle": { - "trip": { - "tripId": "5524156", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.74968719482422, - "longitude": -111.89726257324219, - "bearing": 92.5999984741211, - "speed": 1.6093440055847168 - }, - "timestamp": "1763602903", - "vehicle": { - "id": "15003", - "label": "15003" - } - } - }, - { - "id": "1102B", - "vehicle": { - "trip": { - "tripId": "5619751", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.75843048095703, - "longitude": -111.85269927978516, - "bearing": 82.80000305175781, - "speed": 3.755136013031006 - }, - "timestamp": "1763602906", - "vehicle": { - "id": "1102B", - "label": "1102B" - } - } - }, - { - "id": "21011", - "vehicle": { - "trip": { - "tripId": "5618233", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.3592414855957, - "longitude": -111.74066925048828, - "bearing": 353.29998779296875, - "speed": 5.453887939453125 - }, - "timestamp": "1763602894", - "vehicle": { - "id": "21011", - "label": "21011" - } - } - }, - { - "id": "10033", - "vehicle": { - "trip": { - "tripId": "5524849", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.758628845214844, - "longitude": -111.94398498535156, - "bearing": 259.70001220703125, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602905", - "vehicle": { - "id": "10033", - "label": "10033" - } - } - }, - { - "id": "23003", - "vehicle": { - "trip": { - "tripId": "5528032", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.69644546508789, - "longitude": -112.09085845947266, - "bearing": 90.4000015258789, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602896", - "vehicle": { - "id": "23003", - "label": "23003" - } - } - }, - { - "id": "21079", - "vehicle": { - "trip": { - "tripId": "5535058", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.9872932434082, - "longitude": -111.9051742553711, - "bearing": 290, - "speed": 5.230368137359619 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "21079", - "label": "21079" - } - } - }, - { - "id": "18020", - "vehicle": { - "trip": { - "tripId": "5529958", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.22112274169922, - "longitude": -111.9703598022461, - "bearing": 348.6000061035156, - "speed": 1.6093440055847168 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "18020", - "label": "18020" - } - } - }, - { - "id": "07019", - "vehicle": { - "trip": { - "tripId": "5530017", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.205692291259766, - "longitude": -111.97098541259766, - "bearing": 179, - "speed": 3.978656053543091 - }, - "timestamp": "1763602902", - "vehicle": { - "id": "07019", - "label": "07019" - } - } - }, - { - "id": "17046", - "vehicle": { - "trip": { - "tripId": "5529224", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.690956115722656, - "longitude": -111.95802307128906, - "bearing": 180.5, - "speed": 12.293600082397461 - }, - "timestamp": "1763602902", - "vehicle": { - "id": "17046", - "label": "17046" - } - } - }, - { - "id": "CC117", - "vehicle": { - "trip": { - "tripId": "5525845", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.23516845703125, - "longitude": -111.6830825805664, - "bearing": 140.77000427246094, - "speed": 16.665651321411133 - }, - "timestamp": "1763602893", - "vehicle": { - "id": "CC117", - "label": "CC117" - } - } - }, - { - "id": "17032", - "vehicle": { - "trip": { - "tripId": "5528190", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.71961975097656, - "longitude": -111.86210632324219, - "bearing": 267.20001220703125, - "speed": 5.3197760581970215 - }, - "timestamp": "1763602904", - "vehicle": { - "id": "17032", - "label": "17032" - } - } - }, - { - "id": "22014", - "vehicle": { - "trip": { - "tripId": "5620475", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.17226028442383, - "longitude": -111.6085433959961, - "bearing": 90.30000305175781, - "speed": 11.131296157836914 - }, - "timestamp": "1763602904", - "vehicle": { - "id": "22014", - "label": "22014" - } - } - }, - { - "id": "09030", - "vehicle": { - "trip": { - "tripId": "5617942", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.23290252685547, - "longitude": -111.71576690673828, - "bearing": 173.6999969482422, - "speed": 12.874752044677734 - }, - "timestamp": "1763602906", - "vehicle": { - "id": "09030", - "label": "09030" - } - } - }, - { - "id": "19006", - "vehicle": { - "trip": { - "tripId": "5534907", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.5711555480957, - "longitude": -111.88542175292969, - "bearing": 293.8999938964844, - "speed": 0 - }, - "timestamp": "1763602895", - "vehicle": { - "id": "19006", - "label": "19006" - } - } - }, - { - "id": "07004", - "vehicle": { - "trip": { - "tripId": "5525653", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.05995178222656, - "longitude": -111.95765686035156, - "bearing": 1.7000000476837158, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "07004", - "label": "07004" - } - } - }, - { - "id": "20006", - "vehicle": { - "trip": { - "tripId": "5528209", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.66016387939453, - "longitude": -111.89518737792969, - "bearing": 205.5, - "speed": 0 - }, - "timestamp": "1763602896", - "vehicle": { - "id": "20006", - "label": "20006" - } - } - }, - { - "id": "23103", - "vehicle": { - "trip": { - "tripId": "5525424", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.63331604003906, - "longitude": -111.8890609741211, - "bearing": 275.3999938964844, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602906", - "vehicle": { - "id": "23103", - "label": "23103" - } - } - }, - { - "id": "17120", - "vehicle": { - "trip": { - "tripId": "5617771", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.26275634765625, - "longitude": -111.66707611083984, - "bearing": 316.79998779296875, - "speed": 0.9387840032577515 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "17120", - "label": "17120" - } - } - }, - { - "id": "18004", - "vehicle": { - "trip": { - "tripId": "5528614", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.70534896850586, - "longitude": -111.85523223876953, - "bearing": 3.200000047683716, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "18004", - "label": "18004" - } - } - }, - { - "id": "23030", - "vehicle": { - "trip": { - "tripId": "5526958", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.71732711791992, - "longitude": -111.88811492919922, - "bearing": 0.20000000298023224, - "speed": 3.978656053543091 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "23030", - "label": "23030" - } - } - }, - { - "id": "18201", - "vehicle": { - "trip": { - "tripId": "5530780", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.65359878540039, - "longitude": -112.02450561523438, - "bearing": 1.2999999523162842, - "speed": 0 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "18201", - "label": "18201" - } - } - }, - { - "id": "13002", - "vehicle": { - "trip": { - "tripId": "5525265", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.76934814453125, - "longitude": -111.9393081665039, - "bearing": 178.6999969482422, - "speed": 10.639552116394043 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "13002", - "label": "13002" - } - } - }, - { - "id": "21001", - "vehicle": { - "trip": { - "tripId": "5618238", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.235225677490234, - "longitude": -111.66714477539062, - "bearing": 273.5, - "speed": 1.0728960037231445 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "21001", - "label": "21001" - } - } - }, - { - "id": "11021", - "vehicle": { - "trip": { - "tripId": "5529780", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.20705795288086, - "longitude": -112.00653839111328, - "bearing": 181.5, - "speed": 0 - }, - "timestamp": "1763602893", - "vehicle": { - "id": "11021", - "label": "11021" - } - } - }, - { - "id": "17021", - "vehicle": { - "trip": { - "tripId": "5528872", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.65290451049805, - "longitude": -111.98811340332031, - "bearing": 261.8999938964844, - "speed": 6.437376022338867 - }, - "timestamp": "1763602893", - "vehicle": { - "id": "17021", - "label": "17021" - } - } - }, - { - "id": "1005B", - "vehicle": { - "trip": { - "tripId": "5619655", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.767608642578125, - "longitude": -111.89124298095703, - "bearing": 180, - "speed": 0 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "1005B", - "label": "1005B" - } - } - }, - { - "id": "24011", - "vehicle": { - "trip": { - "tripId": "5525493", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.77464294433594, - "longitude": -111.87761688232422, - "bearing": 180.5, - "speed": 8.449055671691895 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "24011", - "label": "24011" - } - } - }, - { - "id": "17037", - "vehicle": { - "trip": { - "tripId": "5528518", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.63375473022461, - "longitude": -111.8111572265625, - "bearing": 236.3000030517578, - "speed": 0 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "17037", - "label": "17037" - } - } - }, - { - "id": "17113", - "vehicle": { - "trip": { - "tripId": "5617824", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.273494720458984, - "longitude": -111.69493865966797, - "bearing": 264.6000061035156, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602903", - "vehicle": { - "id": "17113", - "label": "17113" - } - } - }, - { - "id": "1173A", - "vehicle": { - "trip": { - "tripId": "5575530", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.72321319580078, - "longitude": -111.91328430175781, - "bearing": 93.69999694824219, - "speed": 14.662912368774414 - }, - "timestamp": "1763602902", - "vehicle": { - "id": "1173A", - "label": "1173A" - } - } - }, - { - "id": "10008", - "vehicle": { - "trip": { - "tripId": "5534663", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.91855239868164, - "longitude": -111.87236785888672, - "bearing": 180.1999969482422, - "speed": 11.578335762023926 - }, - "timestamp": "1763602894", - "vehicle": { - "id": "10008", - "label": "10008" - } - } - }, - { - "id": "19205", - "vehicle": { - "trip": { - "tripId": "5535105", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.6236686706543, - "longitude": -111.92182922363281, - "bearing": 89.19999694824219, - "speed": 17.56867218017578 - }, - "timestamp": "1763602895", - "vehicle": { - "id": "19205", - "label": "19205" - } - } - }, - { - "id": "12012", - "vehicle": { - "trip": { - "tripId": "5526260", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.6933708190918, - "longitude": -111.96061706542969, - "bearing": 201.10000610351562, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "12012", - "label": "12012" - } - } - }, - { - "id": "13008", - "vehicle": { - "trip": { - "tripId": "5534715", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.80026626586914, - "longitude": -111.9390869140625, - "bearing": 359.5, - "speed": 10.728960037231445 - }, - "timestamp": "1763602896", - "vehicle": { - "id": "13008", - "label": "13008" - } - } - }, - { - "id": "23028", - "vehicle": { - "trip": { - "tripId": "5525656", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.75628662109375, - "longitude": -111.8901138305664, - "bearing": 89.5999984741211, - "speed": 9.298432350158691 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "23028", - "label": "23028" - } - } - }, - { - "id": "13003", - "vehicle": { - "trip": { - "tripId": "5525268", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.67707824707031, - "longitude": -111.89389038085938, - "bearing": 180.10000610351562, - "speed": 0 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "13003", - "label": "13003" - } - } - }, - { - "id": "18207", - "vehicle": { - "trip": { - "tripId": "5530786", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.69579315185547, - "longitude": -112.02507019042969, - "bearing": 180.89999389648438, - "speed": 0 - }, - "timestamp": "1763602902", - "vehicle": { - "id": "18207", - "label": "18207" - } - } - }, - { - "id": "17206", - "vehicle": { - "trip": { - "tripId": "5531000", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.58034896850586, - "longitude": -111.84664154052734, - "bearing": 90.0999984741211, - "speed": 15.109951972961426 - }, - "timestamp": "1763602905", - "vehicle": { - "id": "17206", - "label": "17206" - } - } - }, - { - "id": "22008", - "vehicle": { - "trip": { - "tripId": "5618217", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.27293395996094, - "longitude": -111.6787109375, - "bearing": 103.4000015258789, - "speed": 0.6705600023269653 - }, - "timestamp": "1763602905", - "vehicle": { - "id": "22008", - "label": "22008" - } - } - }, - { - "id": "23106", - "vehicle": { - "trip": { - "tripId": "5524577", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.76506042480469, - "longitude": -111.88681030273438, - "bearing": 269.5, - "speed": 8.672575950622559 - }, - "timestamp": "1763602906", - "vehicle": { - "id": "23106", - "label": "23106" - } - } - }, - { - "id": "24008", - "vehicle": { - "trip": { - "tripId": "5525427", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.75232696533203, - "longitude": -111.86534881591797, - "bearing": 181.10000610351562, - "speed": 5.006847858428955 - }, - "timestamp": "1763602895", - "vehicle": { - "id": "24008", - "label": "24008" - } - } - }, - { - "id": "21082", - "vehicle": { - "trip": { - "tripId": "5534664", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.98210525512695, - "longitude": -111.90751647949219, - "bearing": 270.3999938964844, - "speed": 12.427712440490723 - }, - "timestamp": "1763602905", - "vehicle": { - "id": "21082", - "label": "21082" - } - } - }, - { - "id": "23115", - "vehicle": { - "trip": { - "tripId": "5524846", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.76933670043945, - "longitude": -111.86153411865234, - "bearing": 90, - "speed": 11.354816436767578 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "23115", - "label": "23115" - } - } - }, - { - "id": "1155A", - "vehicle": { - "trip": { - "tripId": "5575451", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.70436096191406, - "longitude": -111.94880676269531, - "bearing": 179.1999969482422, - "speed": 3.03987193107605 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "1155A", - "label": "1155A" - } - } - }, - { - "id": "23013", - "vehicle": { - "trip": { - "tripId": "5527670", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.700103759765625, - "longitude": -111.795166015625, - "bearing": 359.79998779296875, - "speed": 25.481279373168945 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "23013", - "label": "23013" - } - } - }, - { - "id": "23010", - "vehicle": { - "trip": { - "tripId": "5527659", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.69996643066406, - "longitude": -111.83737182617188, - "bearing": 270.6000061035156, - "speed": 13.366496086120605 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "23010", - "label": "23010" - } - } - }, - { - "id": "16004", - "vehicle": { - "trip": { - "tripId": "5530608", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.98776626586914, - "longitude": -111.90552520751953, - "bearing": 82.19999694824219, - "speed": 0 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "16004", - "label": "16004" - } - } - }, - { - "id": "15015", - "vehicle": { - "trip": { - "tripId": "5526256", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.753395080566406, - "longitude": -111.91383361816406, - "bearing": 1.100000023841858, - "speed": 9.16431999206543 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "15015", - "label": "15015" - } - } - }, - { - "id": "20002", - "vehicle": { - "trip": { - "tripId": "5528615", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.60969924926758, - "longitude": -111.8907699584961, - "bearing": 179.10000610351562, - "speed": 0 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "20002", - "label": "20002" - } - } - }, - { - "id": "18017", - "vehicle": { - "trip": { - "tripId": "5525654", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.99028396606445, - "longitude": -111.88936614990234, - "bearing": 267.29998779296875, - "speed": 10.05840015411377 - }, - "timestamp": "1763602894", - "vehicle": { - "id": "18017", - "label": "18017" - } - } - }, - { - "id": "24007", - "vehicle": { - "trip": { - "tripId": "5525426", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.700164794921875, - "longitude": -111.86549377441406, - "bearing": 181.1999969482422, - "speed": 6.347968101501465 - }, - "timestamp": "1763602904", - "vehicle": { - "id": "24007", - "label": "24007" - } - } - }, - { - "id": "17033", - "vehicle": { - "trip": { - "tripId": "5525080", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.57884979248047, - "longitude": -111.83317565917969, - "bearing": 263.79998779296875, - "speed": 0 - }, - "timestamp": "1763602895", - "vehicle": { - "id": "17033", - "label": "17033" - } - } - }, - { - "id": "17057", - "vehicle": { - "trip": { - "tripId": "5527292", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.75155258178711, - "longitude": -111.93889617919922, - "bearing": 357.70001220703125, - "speed": 1.8105120658874512 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "17057", - "label": "17057" - } - } - }, - { - "id": "24005", - "vehicle": { - "trip": { - "tripId": "5525428", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.7773551940918, - "longitude": -111.88029479980469, - "bearing": 270.20001220703125, - "speed": 6.035039901733398 - }, - "timestamp": "1763602895", - "vehicle": { - "id": "24005", - "label": "24005" - } - } - }, - { - "id": "11019", - "vehicle": { - "trip": { - "tripId": "5530198", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.028594970703125, - "longitude": -111.92730712890625, - "bearing": 180.10000610351562, - "speed": 10.147808074951172 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "11019", - "label": "11019" - } - } - }, - { - "id": "21005", - "vehicle": { - "trip": { - "tripId": "5617892", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.25138473510742, - "longitude": -111.65872192382812, - "bearing": 180.39999389648438, - "speed": 3.844543933868408 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "21005", - "label": "21005" - } - } - }, - { - "id": "17076", - "vehicle": { - "trip": { - "tripId": "5530090", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.188011169433594, - "longitude": -111.9488525390625, - "bearing": 2.299999952316284, - "speed": 17.121631622314453 - }, - "timestamp": "1763602900", - "vehicle": { - "id": "17076", - "label": "17076" - } - } - }, - { - "id": "24207", - "vehicle": { - "trip": { - "tripId": "5535354", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.770484924316406, - "longitude": -111.85235595703125, - "bearing": 359.79998779296875, - "speed": 8.002016067504883 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "24207", - "label": "24207" - } - } - }, - { - "id": "1004B", - "vehicle": { - "trip": { - "tripId": "5619565", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.76509094238281, - "longitude": -111.90570831298828, - "bearing": 269.1000061035156, - "speed": 5.945631980895996 - }, - "timestamp": "1763602891", - "vehicle": { - "id": "1004B", - "label": "1004B" - } - } - }, - { - "id": "13004", - "vehicle": { - "trip": { - "tripId": "5524194", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.741676330566406, - "longitude": -111.90453338623047, - "bearing": 271.6000061035156, - "speed": 1.6987520456314087 - }, - "timestamp": "1763602902", - "vehicle": { - "id": "13004", - "label": "13004" - } - } - }, - { - "id": "14005", - "vehicle": { - "trip": { - "tripId": "5530402", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.35203552246094, - "longitude": -112.0362548828125, - "bearing": 189.6999969482422, - "speed": 0.5364480018615723 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "14005", - "label": "14005" - } - } - }, - { - "id": "18208", - "vehicle": { - "trip": { - "tripId": "5535094", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.61608123779297, - "longitude": -111.91593170166016, - "bearing": 280.79998779296875, - "speed": 3.844543933868408 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "18208", - "label": "18208" - } - } - }, - { - "id": "21018", - "vehicle": { - "trip": { - "tripId": "5534858", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.543521881103516, - "longitude": -112.01380157470703, - "bearing": 143.5, - "speed": 0 - }, - "timestamp": "1763602903", - "vehicle": { - "id": "21018", - "label": "21018" - } - } - }, - { - "id": "23002", - "vehicle": { - "trip": { - "tripId": "5527622", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.687538146972656, - "longitude": -111.79683685302734, - "bearing": 199.10000610351562, - "speed": 0 - }, - "timestamp": "1763602894", - "vehicle": { - "id": "23002", - "label": "23002" - } - } - }, - { - "id": "14001", - "vehicle": { - "trip": { - "tripId": "5534660", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.793434143066406, - "longitude": -111.90319061279297, - "bearing": 153.89999389648438, - "speed": 14.975839614868164 - }, - "timestamp": "1763602895", - "vehicle": { - "id": "14001", - "label": "14001" - } - } - }, - { - "id": "12002", - "vehicle": { - "trip": { - "tripId": "5527287", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.60503005981445, - "longitude": -111.93661499023438, - "bearing": 70.9000015258789, - "speed": 0 - }, - "timestamp": "1763602896", - "vehicle": { - "id": "12002", - "label": "12002" - } - } - }, - { - "id": "21080", - "vehicle": { - "trip": { - "tripId": "5535056", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.21003723144531, - "longitude": -111.95609283447266, - "bearing": 271.1000061035156, - "speed": 14.707615852355957 - }, - "timestamp": "1763602906", - "vehicle": { - "id": "21080", - "label": "21080" - } - } - }, - { - "id": "14007", - "vehicle": { - "trip": { - "tripId": "5530393", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.459354400634766, - "longitude": -112.0373764038086, - "bearing": 15.800000190734863, - "speed": 18.909791946411133 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "14007", - "label": "14007" - } - } - }, - { - "id": "07005", - "vehicle": { - "trip": { - "tripId": "5525235", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.75653839111328, - "longitude": -111.87683868408203, - "bearing": 180.39999389648438, - "speed": 0 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "07005", - "label": "07005" - } - } - }, - { - "id": "1008B", - "vehicle": { - "trip": { - "tripId": "5619567", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.70591354370117, - "longitude": -111.8968734741211, - "bearing": 359.70001220703125, - "speed": 21.726144790649414 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "1008B", - "label": "1008B" - } - } - }, - { - "id": "24204", - "vehicle": { - "trip": { - "tripId": "5530720", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.53644943237305, - "longitude": -111.89723205566406, - "bearing": 350.79998779296875, - "speed": 12.517120361328125 - }, - "timestamp": "1763602902", - "vehicle": { - "id": "24204", - "label": "24204" - } - } - }, - { - "id": "22010", - "vehicle": { - "trip": { - "tripId": "5618236", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.376869201660156, - "longitude": -111.79721069335938, - "bearing": 270.6000061035156, - "speed": 9.611359596252441 - }, - "timestamp": "1763602893", - "vehicle": { - "id": "22010", - "label": "22010" - } - } - }, - { - "id": "17210", - "vehicle": { - "trip": { - "tripId": "5535134", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.58770751953125, - "longitude": -111.9559555053711, - "bearing": 90.5, - "speed": 14.662912368774414 - }, - "timestamp": "1763602894", - "vehicle": { - "id": "17210", - "label": "17210" - } - } - }, - { - "id": "17056", - "vehicle": { - "trip": { - "tripId": "5527227", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.670597076416016, - "longitude": -111.93975067138672, - "bearing": 192.1999969482422, - "speed": 0.7599679827690125 - }, - "timestamp": "1763602895", - "vehicle": { - "id": "17056", - "label": "17056" - } - } - }, - { - "id": "13036", - "vehicle": { - "trip": { - "tripId": "5534747", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.88033676147461, - "longitude": -111.90301513671875, - "bearing": 209, - "speed": 0 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "13036", - "label": "13036" - } - } - }, - { - "id": "14016", - "vehicle": { - "trip": { - "tripId": "5525688", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.22482681274414, - "longitude": -111.97029113769531, - "bearing": 264.70001220703125, - "speed": 4.202176094055176 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "14016", - "label": "14016" - } - } - }, - { - "id": "21007", - "vehicle": { - "trip": { - "tripId": "5618376", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.52680206298828, - "longitude": -111.88874816894531, - "bearing": 268.5, - "speed": 12.070079803466797 - }, - "timestamp": "1763602900", - "vehicle": { - "id": "21007", - "label": "21007" - } - } - }, - { - "id": "11022", - "vehicle": { - "trip": { - "tripId": "5530562", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.27662658691406, - "longitude": -111.9692153930664, - "bearing": 2.5, - "speed": 11.175999641418457 - }, - "timestamp": "1763602902", - "vehicle": { - "id": "11022", - "label": "11022" - } - } - }, - { - "id": "1142A", - "vehicle": { - "trip": { - "tripId": "5575454", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.784263610839844, - "longitude": -111.98139953613281, - "bearing": 118.5999984741211, - "speed": 3.531615972518921 - }, - "timestamp": "1763602894", - "vehicle": { - "id": "1142A", - "label": "1142A" - } - } - }, - { - "id": "11012", - "vehicle": { - "trip": { - "tripId": "5618001", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.31167221069336, - "longitude": -111.75118255615234, - "bearing": 284.79998779296875, - "speed": 0 - }, - "timestamp": "1763602903", - "vehicle": { - "id": "11012", - "label": "11012" - } - } - }, - { - "id": "23117", - "vehicle": { - "trip": { - "tripId": "5526284", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.71450424194336, - "longitude": -111.97711944580078, - "bearing": 359.8999938964844, - "speed": 0.5856223702430725 - }, - "timestamp": "1763602903", - "vehicle": { - "id": "23117", - "label": "23117" - } - } - }, - { - "id": "1106A", - "vehicle": { - "trip": { - "tripId": "5619753", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.66055679321289, - "longitude": -111.89508056640625, - "bearing": 23.399999618530273, - "speed": 9.566656112670898 - }, - "timestamp": "1763602906", - "vehicle": { - "id": "1106A", - "label": "1106A" - } - } - }, - { - "id": "19001", - "vehicle": { - "trip": { - "tripId": "5527370", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.56113815307617, - "longitude": -111.9028091430664, - "bearing": 191.3000030517578, - "speed": 11.086591720581055 - }, - "timestamp": "1763602894", - "vehicle": { - "id": "19001", - "label": "19001" - } - } - }, - { - "id": "11023", - "vehicle": { - "trip": { - "tripId": "5530143", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.094974517822266, - "longitude": -111.99555969238281, - "bearing": 145, - "speed": 13.679424285888672 - }, - "timestamp": "1763602904", - "vehicle": { - "id": "11023", - "label": "11023" - } - } - }, - { - "id": "17041", - "vehicle": { - "trip": { - "tripId": "5529156", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.68760299682617, - "longitude": -111.7966537475586, - "bearing": 24.399999618530273, - "speed": 0 - }, - "timestamp": "1763602896", - "vehicle": { - "id": "17041", - "label": "17041" - } - } - }, - { - "id": "24004", - "vehicle": { - "trip": { - "tripId": "5524460", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.76384735107422, - "longitude": -111.90959930419922, - "bearing": 166.1999969482422, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "24004", - "label": "24004" - } - } - }, - { - "id": "15014", - "vehicle": { - "trip": { - "tripId": "5524850", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.75851821899414, - "longitude": -111.94419860839844, - "bearing": 257.20001220703125, - "speed": 0 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "15014", - "label": "15014" - } - } - }, - { - "id": "24206", - "vehicle": { - "trip": { - "tripId": "5530947", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.58814239501953, - "longitude": -111.86819458007812, - "bearing": 273.79998779296875, - "speed": 13.053567886352539 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "24206", - "label": "24206" - } - } - }, - { - "id": "23031", - "vehicle": { - "trip": { - "tripId": "5526892", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.77147674560547, - "longitude": -111.88849639892578, - "bearing": 92.69999694824219, - "speed": 0 - }, - "timestamp": "1763602900", - "vehicle": { - "id": "23031", - "label": "23031" - } - } - }, - { - "id": "19009", - "vehicle": { - "trip": { - "tripId": "5534874", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.52239227294922, - "longitude": -111.93095397949219, - "bearing": 269.8999938964844, - "speed": 15.065247535705566 - }, - "timestamp": "1763602900", - "vehicle": { - "id": "19009", - "label": "19009" - } - } - }, - { - "id": "18009", - "vehicle": { - "trip": { - "tripId": "5528278", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.5697021484375, - "longitude": -111.89505767822266, - "bearing": 269.79998779296875, - "speed": 0.22351999580860138 - }, - "timestamp": "1763602902", - "vehicle": { - "id": "18009", - "label": "18009" - } - } - }, - { - "id": "23005", - "vehicle": { - "trip": { - "tripId": "5527965", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.69657897949219, - "longitude": -112.05976104736328, - "bearing": 273.29998779296875, - "speed": 0 - }, - "timestamp": "1763602905", - "vehicle": { - "id": "23005", - "label": "23005" - } - } - }, - { - "id": "13009", - "vehicle": { - "trip": { - "tripId": "5524182", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.76693344116211, - "longitude": -111.83651733398438, - "bearing": 196.3000030517578, - "speed": 10.95248031616211 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "13009", - "label": "13009" - } - } - }, - { - "id": "23101", - "vehicle": { - "trip": { - "tripId": "5524912", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.76507568359375, - "longitude": -111.88775634765625, - "bearing": 270.3999938964844, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "23101", - "label": "23101" - } - } - }, - { - "id": "23215", - "vehicle": { - "trip": { - "tripId": "5574979", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.259010314941406, - "longitude": -111.96961975097656, - "bearing": 359.79998779296875, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "23215", - "label": "23215" - } - } - }, - { - "id": "19005", - "vehicle": { - "trip": { - "tripId": "5526893", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.771671295166016, - "longitude": -111.90254211425781, - "bearing": 180.6999969482422, - "speed": 0 - }, - "timestamp": "1763602892", - "vehicle": { - "id": "19005", - "label": "19005" - } - } - }, - { - "id": "18010", - "vehicle": { - "trip": { - "tripId": "5528723", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.67501449584961, - "longitude": -112.02461242675781, - "bearing": 0, - "speed": 14.171168327331543 - }, - "timestamp": "1763602903", - "vehicle": { - "id": "18010", - "label": "18010" - } - } - }, - { - "id": "21086", - "vehicle": { - "trip": { - "tripId": "5534643", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.13323974609375, - "longitude": -111.91111755371094, - "bearing": 333.20001220703125, - "speed": 23.15667152404785 - }, - "timestamp": "1763602903", - "vehicle": { - "id": "21086", - "label": "21086" - } - } - }, - { - "id": "14002", - "vehicle": { - "trip": { - "tripId": "5534645", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.93919372558594, - "longitude": -111.87959289550781, - "bearing": 350.29998779296875, - "speed": 15.6911039352417 - }, - "timestamp": "1763602904", - "vehicle": { - "id": "14002", - "label": "14002" - } - } - }, - { - "id": "23032", - "vehicle": { - "trip": { - "tripId": "5526957", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.775943756103516, - "longitude": -111.89097595214844, - "bearing": 269.79998779296875, - "speed": 1.4305280447006226 - }, - "timestamp": "1763602893", - "vehicle": { - "id": "23032", - "label": "23032" - } - } - }, - { - "id": "23029", - "vehicle": { - "trip": { - "tripId": "5523900", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.76301193237305, - "longitude": -111.97663116455078, - "bearing": 103.4000015258789, - "speed": 25.70479965209961 - }, - "timestamp": "1763602895", - "vehicle": { - "id": "23029", - "label": "23029" - } - } - }, - { - "id": "24002", - "vehicle": { - "trip": { - "tripId": "5524913", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.7694206237793, - "longitude": -111.85931396484375, - "bearing": 273.29998779296875, - "speed": 0 - }, - "timestamp": "1763602895", - "vehicle": { - "id": "24002", - "label": "24002" - } - } - }, - { - "id": "18022", - "vehicle": { - "trip": { - "tripId": "5524848", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.790992736816406, - "longitude": -111.93500518798828, - "bearing": 91.5999984741211, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602896", - "vehicle": { - "id": "18022", - "label": "18022" - } - } - }, - { - "id": "17208", - "vehicle": { - "trip": { - "tripId": "5535412", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.56321716308594, - "longitude": -111.90097045898438, - "bearing": 15.199999809265137, - "speed": 0 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "17208", - "label": "17208" - } - } - }, - { - "id": "15020", - "vehicle": { - "trip": { - "tripId": "5523833", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.760597229003906, - "longitude": -111.84695434570312, - "bearing": 319, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "15020", - "label": "15020" - } - } - }, - { - "id": "17014", - "vehicle": { - "trip": { - "tripId": "5530018", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.30282211303711, - "longitude": -111.96894073486328, - "bearing": 182.60000610351562, - "speed": 0 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "17014", - "label": "17014" - } - } - }, - { - "id": "11001", - "vehicle": { - "trip": { - "tripId": "5618400", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.435081481933594, - "longitude": -111.89021301269531, - "bearing": 313.3999938964844, - "speed": 0.26822400093078613 - }, - "timestamp": "1763602900", - "vehicle": { - "id": "11001", - "label": "11001" - } - } - }, - { - "id": "13035", - "vehicle": { - "trip": { - "tripId": "5523854", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.72134780883789, - "longitude": -111.81181335449219, - "bearing": 147.8000030517578, - "speed": 7.2420477867126465 - }, - "timestamp": "1763602900", - "vehicle": { - "id": "13035", - "label": "13035" - } - } - }, - { - "id": "22105", - "vehicle": { - "trip": { - "tripId": "5529590", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.22465515136719, - "longitude": -111.98004150390625, - "bearing": 6.099999904632568, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602900", - "vehicle": { - "id": "22105", - "label": "22105" - } - } - }, - { - "id": "21013", - "vehicle": { - "trip": { - "tripId": "5618171", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.412357330322266, - "longitude": -111.87084197998047, - "bearing": 94.5, - "speed": 8.538463592529297 - }, - "timestamp": "1763602902", - "vehicle": { - "id": "21013", - "label": "21013" - } - } - }, - { - "id": "23012", - "vehicle": { - "trip": { - "tripId": "5527676", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.7005615234375, - "longitude": -111.89714050292969, - "bearing": 42.099998474121094, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602903", - "vehicle": { - "id": "23012", - "label": "23012" - } - } - }, - { - "id": "22011", - "vehicle": { - "trip": { - "tripId": "5617350", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.14467239379883, - "longitude": -111.64128875732422, - "bearing": 269.20001220703125, - "speed": 9.611359596252441 - }, - "timestamp": "1763602905", - "vehicle": { - "id": "22011", - "label": "22011" - } - } - }, - { - "id": "13038", - "vehicle": { - "trip": { - "tripId": "5525266", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.76515197753906, - "longitude": -111.89054870605469, - "bearing": 271.1000061035156, - "speed": 4.157472133636475 - }, - "timestamp": "1763602895", - "vehicle": { - "id": "13038", - "label": "13038" - } - } - }, - { - "id": "17015", - "vehicle": { - "trip": { - "tripId": "5528252", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.65998077392578, - "longitude": -111.89517211914062, - "bearing": 200.60000610351562, - "speed": 0 - }, - "timestamp": "1763602895", - "vehicle": { - "id": "17015", - "label": "17015" - } - } - }, - { - "id": "17022", - "vehicle": { - "trip": { - "tripId": "5534857", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.526058197021484, - "longitude": -111.89562225341797, - "bearing": 339.6000061035156, - "speed": 0 - }, - "timestamp": "1763602896", - "vehicle": { - "id": "17022", - "label": "17022" - } - } - }, - { - "id": "22101", - "vehicle": { - "trip": { - "tripId": "5529588", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.22059631347656, - "longitude": -111.97035217285156, - "bearing": 120.80000305175781, - "speed": 3.6657280921936035 - }, - "timestamp": "1763602896", - "vehicle": { - "id": "22101", - "label": "22101" - } - } - }, - { - "id": "15021", - "vehicle": { - "trip": { - "tripId": "5523896", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.77168273925781, - "longitude": -111.94656372070312, - "bearing": 253.5, - "speed": 1.4752320051193237 - }, - "timestamp": "1763602900", - "vehicle": { - "id": "15021", - "label": "15021" - } - } - }, - { - "id": "1118B", - "vehicle": { - "trip": { - "tripId": "5619826", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.61722946166992, - "longitude": -111.91438293457031, - "bearing": 263.5, - "speed": 10.818367958068848 - }, - "timestamp": "1763602900", - "vehicle": { - "id": "1118B", - "label": "1118B" - } - } - }, - { - "id": "17025", - "vehicle": { - "trip": { - "tripId": "5526183", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.59500503540039, - "longitude": -111.97059631347656, - "bearing": 270.5, - "speed": 0 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "17025", - "label": "17025" - } - } - }, - { - "id": "11024", - "vehicle": { - "trip": { - "tripId": "5530231", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.09642028808594, - "longitude": -112.01255798339844, - "bearing": 338.29998779296875, - "speed": 0 - }, - "timestamp": "1763602902", - "vehicle": { - "id": "11024", - "label": "11024" - } - } - }, - { - "id": "15012", - "vehicle": { - "trip": { - "tripId": "5525492", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.76506042480469, - "longitude": -111.9036865234375, - "bearing": 270.20001220703125, - "speed": 8.136128425598145 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "15012", - "label": "15012" - } - } - }, - { - "id": "20052", - "vehicle": { - "trip": { - "tripId": "5528512", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.77286911010742, - "longitude": -111.86681365966797, - "bearing": 270.6000061035156, - "speed": 8.091423988342285 - }, - "timestamp": "1763602893", - "vehicle": { - "id": "20052", - "label": "20052" - } - } - }, - { - "id": "12009", - "vehicle": { - "trip": { - "tripId": "5528616", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.61030578613281, - "longitude": -111.8931884765625, - "bearing": 21, - "speed": 0 - }, - "timestamp": "1763602903", - "vehicle": { - "id": "12009", - "label": "12009" - } - } - }, - { - "id": "14018", - "vehicle": { - "trip": { - "tripId": "5534678", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.85096740722656, - "longitude": -111.91150665283203, - "bearing": 34.099998474121094, - "speed": 25.794208526611328 - }, - "timestamp": "1763602903", - "vehicle": { - "id": "14018", - "label": "14018" - } - } - }, - { - "id": "17012", - "vehicle": { - "trip": { - "tripId": "5525687", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.171260833740234, - "longitude": -112.01922607421875, - "bearing": 237.8000030517578, - "speed": 11.533632278442383 - }, - "timestamp": "1763602893", - "vehicle": { - "id": "17012", - "label": "17012" - } - } - }, - { - "id": "17071", - "vehicle": { - "trip": { - "tripId": "5529784", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.19068145751953, - "longitude": -112.03923797607422, - "bearing": 89.5, - "speed": 0 - }, - "timestamp": "1763602893", - "vehicle": { - "id": "17071", - "label": "17071" - } - } - }, - { - "id": "L6", - "vehicle": { - "trip": { - "tripId": "5525810", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.63884353637695, - "longitude": -111.90093231201172, - "bearing": 10.600000381469727, - "speed": 24.3189754486084 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "L6", - "label": "L6" - } - } - }, - { - "id": "15005", - "vehicle": { - "trip": { - "tripId": "5525494", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.74086380004883, - "longitude": -111.86531066894531, - "bearing": 359.6000061035156, - "speed": 4.693920135498047 - }, - "timestamp": "1763602904", - "vehicle": { - "id": "15005", - "label": "15005" - } - } - }, - { - "id": "1108A", - "vehicle": { - "trip": { - "tripId": "5575453", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.771488189697266, - "longitude": -111.91454315185547, - "bearing": 89.80000305175781, - "speed": 0 - }, - "timestamp": "1763602895", - "vehicle": { - "id": "1108A", - "label": "1108A" - } - } - }, - { - "id": "17050", - "vehicle": { - "trip": { - "tripId": "5527302", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.605140686035156, - "longitude": -111.9361801147461, - "bearing": 70.69999694824219, - "speed": 0 - }, - "timestamp": "1763602905", - "vehicle": { - "id": "17050", - "label": "17050" - } - } - }, - { - "id": "17124", - "vehicle": { - "trip": { - "tripId": "5617576", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.22507858276367, - "longitude": -111.66187286376953, - "bearing": 105.5, - "speed": 4.872735977172852 - }, - "timestamp": "1763602896", - "vehicle": { - "id": "17124", - "label": "17124" - } - } - }, - { - "id": "22013", - "vehicle": { - "trip": { - "tripId": "5620506", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.165382385253906, - "longitude": -111.60333251953125, - "bearing": 359.1000061035156, - "speed": 13.008864402770996 - }, - "timestamp": "1763602896", - "vehicle": { - "id": "22013", - "label": "22013" - } - } - }, - { - "id": "23018", - "vehicle": { - "trip": { - "tripId": "5527998", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.69954299926758, - "longitude": -111.91870880126953, - "bearing": 270.5, - "speed": 10.103103637695312 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "23018", - "label": "23018" - } - } - }, - { - "id": "23102", - "vehicle": { - "trip": { - "tripId": "5525425", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.6660041809082, - "longitude": -111.8650131225586, - "bearing": 174.5, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "23102", - "label": "23102" - } - } - }, - { - "id": "12031", - "vehicle": { - "trip": { - "tripId": "5524237", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.760746002197266, - "longitude": -111.9382553100586, - "bearing": 275.70001220703125, - "speed": 0 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "12031", - "label": "12031" - } - } - }, - { - "id": "17034", - "vehicle": { - "trip": { - "tripId": "5526163", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.66661834716797, - "longitude": -111.98680114746094, - "bearing": 186.1999969482422, - "speed": 7.197343826293945 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "17034", - "label": "17034" - } - } - }, - { - "id": "22016", - "vehicle": { - "trip": { - "tripId": "5617315", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.10588073730469, - "longitude": -111.65530395507812, - "bearing": 86.5, - "speed": 0 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "22016", - "label": "22016" - } - } - }, - { - "id": "1140A", - "vehicle": { - "trip": { - "tripId": "5575529", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.7573356628418, - "longitude": -111.89105987548828, - "bearing": 359.79998779296875, - "speed": 0 - }, - "timestamp": "1763602902", - "vehicle": { - "id": "1140A", - "label": "1140A" - } - } - }, - { - "id": "22002", - "vehicle": { - "trip": { - "tripId": "5618232", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.3769645690918, - "longitude": -111.80784606933594, - "bearing": 270.20001220703125, - "speed": 11.220704078674316 - }, - "timestamp": "1763602903", - "vehicle": { - "id": "22002", - "label": "22002" - } - } - }, - { - "id": "23009", - "vehicle": { - "trip": { - "tripId": "5528063", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.69655227661133, - "longitude": -111.9378890991211, - "bearing": 91.5, - "speed": 0 - }, - "timestamp": "1763602893", - "vehicle": { - "id": "23009", - "label": "23009" - } - } - }, - { - "id": "13043", - "vehicle": { - "trip": { - "tripId": "5524227", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.74983596801758, - "longitude": -111.87580108642578, - "bearing": 269.29998779296875, - "speed": 6.303264141082764 - }, - "timestamp": "1763602896", - "vehicle": { - "id": "13043", - "label": "13043" - } - } - }, - { - "id": "23022", - "vehicle": { - "trip": { - "tripId": "5527221", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.73253631591797, - "longitude": -111.939208984375, - "bearing": 180.8000030517578, - "speed": 0 - }, - "timestamp": "1763602896", - "vehicle": { - "id": "23022", - "label": "23022" - } - } - }, - { - "id": "11002", - "vehicle": { - "trip": { - "tripId": "5618000", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.2885856628418, - "longitude": -111.65869140625, - "bearing": 3.5999999046325684, - "speed": 0.8046720027923584 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "11002", - "label": "11002" - } - } - }, - { - "id": "23111", - "vehicle": { - "trip": { - "tripId": "5524500", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.76495361328125, - "longitude": -111.8593978881836, - "bearing": 88.5999984741211, - "speed": 9.879584312438965 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "23111", - "label": "23111" - } - } - }, - { - "id": "23046", - "vehicle": { - "trip": { - "tripId": "5534835", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.68122863769531, - "longitude": -112.27269744873047, - "bearing": 213.39999389648438, - "speed": 19.088607788085938 - }, - "timestamp": "1763602900", - "vehicle": { - "id": "23046", - "label": "23046" - } - } - }, - { - "id": "17112", - "vehicle": { - "trip": { - "tripId": "5617658", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.275245666503906, - "longitude": -111.72030639648438, - "bearing": 88.80000305175781, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602902", - "vehicle": { - "id": "17112", - "label": "17112" - } - } - }, - { - "id": "17204", - "vehicle": { - "trip": { - "tripId": "5535184", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.587799072265625, - "longitude": -111.93895721435547, - "bearing": 270, - "speed": 9.879584312438965 - }, - "timestamp": "1763602893", - "vehicle": { - "id": "17204", - "label": "17204" - } - } - }, - { - "id": "13007", - "vehicle": { - "trip": { - "tripId": "5523879", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.76051712036133, - "longitude": -111.93817901611328, - "bearing": 90.5999984741211, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602904", - "vehicle": { - "id": "13007", - "label": "13007" - } - } - }, - { - "id": "17207", - "vehicle": { - "trip": { - "tripId": "5535320", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.59492492675781, - "longitude": -111.97079467773438, - "bearing": 260, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602894", - "vehicle": { - "id": "17207", - "label": "17207" - } - } - }, - { - "id": "20053", - "vehicle": { - "trip": { - "tripId": "5528411", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.61848449707031, - "longitude": -111.89810180664062, - "bearing": 177.5, - "speed": 0 - }, - "timestamp": "1763602894", - "vehicle": { - "id": "20053", - "label": "20053" - } - } - }, - { - "id": "22107", - "vehicle": { - "trip": { - "tripId": "5529591", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.2244987487793, - "longitude": -111.98004150390625, - "bearing": 3.200000047683716, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602904", - "vehicle": { - "id": "22107", - "label": "22107" - } - } - }, - { - "id": "10007", - "vehicle": { - "trip": { - "tripId": "5525078", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.76089859008789, - "longitude": -111.8523178100586, - "bearing": 2.799999952316284, - "speed": 7.2420477867126465 - }, - "timestamp": "1763602896", - "vehicle": { - "id": "10007", - "label": "10007" - } - } - }, - { - "id": "18024", - "vehicle": { - "trip": { - "tripId": "5534642", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.22382354736328, - "longitude": -111.97994232177734, - "bearing": 2.5, - "speed": 2.592832088470459 - }, - "timestamp": "1763602896", - "vehicle": { - "id": "18024", - "label": "18024" - } - } - }, - { - "id": "20003", - "vehicle": { - "trip": { - "tripId": "5528461", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.62507629394531, - "longitude": -111.80770874023438, - "bearing": 180.5, - "speed": 10.684255599975586 - }, - "timestamp": "1763602896", - "vehicle": { - "id": "20003", - "label": "20003" - } - } - }, - { - "id": "21023", - "vehicle": { - "trip": { - "tripId": "5527226", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.62474822998047, - "longitude": -111.93893432617188, - "bearing": 180.6999969482422, - "speed": 4.783328056335449 - }, - "timestamp": "1763602896", - "vehicle": { - "id": "21023", - "label": "21023" - } - } - }, - { - "id": "12005", - "vehicle": { - "trip": { - "tripId": "5526604", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.7243766784668, - "longitude": -111.8970718383789, - "bearing": 186.3000030517578, - "speed": 0 - }, - "timestamp": "1763602900", - "vehicle": { - "id": "12005", - "label": "12005" - } - } - }, - { - "id": "12007", - "vehicle": { - "trip": { - "tripId": "5528582", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.67448806762695, - "longitude": -111.85418701171875, - "bearing": 180.8000030517578, - "speed": 0 - }, - "timestamp": "1763602900", - "vehicle": { - "id": "12007", - "label": "12007" - } - } - }, - { - "id": "21021", - "vehicle": { - "trip": { - "tripId": "5529261", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.68694305419922, - "longitude": -111.91281127929688, - "bearing": 89.80000305175781, - "speed": 16.27225685119629 - }, - "timestamp": "1763602900", - "vehicle": { - "id": "21021", - "label": "21021" - } - } - }, - { - "id": "22003", - "vehicle": { - "trip": { - "tripId": "5618237", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.32383728027344, - "longitude": -111.70661163330078, - "bearing": 341.29998779296875, - "speed": 11.578335762023926 - }, - "timestamp": "1763602900", - "vehicle": { - "id": "22003", - "label": "22003" - } - } - }, - { - "id": "12008", - "vehicle": { - "trip": { - "tripId": "5527228", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.77717208862305, - "longitude": -111.94654083251953, - "bearing": 90.5999984741211, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "12008", - "label": "12008" - } - } - }, - { - "id": "17075", - "vehicle": { - "trip": { - "tripId": "5530497", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.19708251953125, - "longitude": -111.97928619384766, - "bearing": 3.299999952316284, - "speed": 0 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "17075", - "label": "17075" - } - } - }, - { - "id": "21076", - "vehicle": { - "trip": { - "tripId": "5535057", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.076011657714844, - "longitude": -111.91026306152344, - "bearing": 19.700000762939453, - "speed": 12.070079803466797 - }, - "timestamp": "1763602902", - "vehicle": { - "id": "21076", - "label": "21076" - } - } - }, - { - "id": "11018", - "vehicle": { - "trip": { - "tripId": "5530498", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.13139343261719, - "longitude": -112.04527282714844, - "bearing": 0.30000001192092896, - "speed": 11.310111999511719 - }, - "timestamp": "1763602895", - "vehicle": { - "id": "11018", - "label": "11018" - } - } - }, - { - "id": "17026", - "vehicle": { - "trip": { - "tripId": "5526197", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.63753128051758, - "longitude": -111.97817993164062, - "bearing": 0.10000000149011612, - "speed": 8.627872467041016 - }, - "timestamp": "1763602896", - "vehicle": { - "id": "17026", - "label": "17026" - } - } - }, - { - "id": "18015", - "vehicle": { - "trip": { - "tripId": "5534625", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.73093795776367, - "longitude": -111.98698425292969, - "bearing": 269.3999938964844, - "speed": 0 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "18015", - "label": "18015" - } - } - }, - { - "id": "17105", - "vehicle": { - "trip": { - "tripId": "5617785", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.24305725097656, - "longitude": -111.65189361572266, - "bearing": 92.30000305175781, - "speed": 1.788159966468811 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "17105", - "label": "17105" - } - } - }, - { - "id": "23109", - "vehicle": { - "trip": { - "tripId": "5524544", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.76504898071289, - "longitude": -111.86498260498047, - "bearing": 269.79998779296875, - "speed": 10.594847679138184 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "23109", - "label": "23109" - } - } - }, - { - "id": "17119", - "vehicle": { - "trip": { - "tripId": "5617670", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.27341079711914, - "longitude": -111.69071960449219, - "bearing": 87.30000305175781, - "speed": 0 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "17119", - "label": "17119" - } - } - }, - { - "id": "17047", - "vehicle": { - "trip": { - "tripId": "5526960", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.659664154052734, - "longitude": -111.89530181884766, - "bearing": 212.3000030517578, - "speed": 0 - }, - "timestamp": "1763602900", - "vehicle": { - "id": "17047", - "label": "17047" - } - } - }, - { - "id": "17016", - "vehicle": { - "trip": { - "tripId": "5527340", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.6050910949707, - "longitude": -111.93639373779297, - "bearing": 69, - "speed": 0 - }, - "timestamp": "1763602900", - "vehicle": { - "id": "17016", - "label": "17016" - } - } - }, - { - "id": "17008", - "vehicle": { - "trip": { - "tripId": "5534646", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.78594970703125, - "longitude": -111.89957427978516, - "bearing": 0.20000000298023224, - "speed": 15.020544052124023 - }, - "timestamp": "1763602904", - "vehicle": { - "id": "17008", - "label": "17008" - } - } - }, - { - "id": "17017", - "vehicle": { - "trip": { - "tripId": "5525044", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.59304428100586, - "longitude": -111.83296203613281, - "bearing": 208.8000030517578, - "speed": 13.54531192779541 - }, - "timestamp": "1763602894", - "vehicle": { - "id": "17017", - "label": "17017" - } - } - }, - { - "id": "20001", - "vehicle": { - "trip": { - "tripId": "5528197", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.668212890625, - "longitude": -111.82463836669922, - "bearing": 66.5, - "speed": 0.7152640223503113 - }, - "timestamp": "1763602905", - "vehicle": { - "id": "20001", - "label": "20001" - } - } - }, - { - "id": "17036", - "vehicle": { - "trip": { - "tripId": "5528742", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.667545318603516, - "longitude": -111.97339630126953, - "bearing": 90, - "speed": 6.795008182525635 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "17036", - "label": "17036" - } - } - }, - { - "id": "21009", - "vehicle": { - "trip": { - "tripId": "5617316", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.16134262084961, - "longitude": -111.64218139648438, - "bearing": 268.70001220703125, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "21009", - "label": "21009" - } - } - }, - { - "id": "23021", - "vehicle": { - "trip": { - "tripId": "5527301", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.67793273925781, - "longitude": -111.93878936767578, - "bearing": 0.10000000149011612, - "speed": 15.467583656311035 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "23021", - "label": "23021" - } - } - }, - { - "id": "20059", - "vehicle": { - "trip": { - "tripId": "5534764", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.733489990234375, - "longitude": -111.8872299194336, - "bearing": 88.19999694824219, - "speed": 7.2420477867126465 - }, - "timestamp": "1763602901", - "vehicle": { - "id": "20059", - "label": "20059" - } - } - }, - { - "id": "21002", - "vehicle": { - "trip": { - "tripId": "5618158", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.22434997558594, - "longitude": -111.65869903564453, - "bearing": 180.5, - "speed": 3.755136013031006 - }, - "timestamp": "1763602903", - "vehicle": { - "id": "21002", - "label": "21002" - } - } - }, - { - "id": "22005", - "vehicle": { - "trip": { - "tripId": "5718412", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.28864669799805, - "longitude": -111.72428131103516, - "bearing": 178.10000610351562, - "speed": 8.985504150390625 - }, - "timestamp": "1763602903", - "vehicle": { - "id": "22005", - "label": "22005" - } - } - }, - { - "id": "22110", - "vehicle": { - "trip": { - "tripId": "5529587", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.19480895996094, - "longitude": -111.94856262207031, - "bearing": 127.5999984741211, - "speed": 5.72211217880249 - }, - "timestamp": "1763602893", - "vehicle": { - "id": "22110", - "label": "22110" - } - } - }, - { - "id": "22108", - "vehicle": { - "trip": { - "tripId": "5529706", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.1917724609375, - "longitude": -111.94503784179688, - "bearing": 26.5, - "speed": 0 - }, - "timestamp": "1763602893", - "vehicle": { - "id": "22108", - "label": "22108" - } - } - }, - { - "id": "23216", - "vehicle": { - "trip": { - "tripId": "5575062", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.219940185546875, - "longitude": -112.02565002441406, - "bearing": 359.29998779296875, - "speed": 7.2420477867126465 - }, - "timestamp": "1763602904", - "vehicle": { - "id": "23216", - "label": "23216" - } - } - }, - { - "id": "20007", - "vehicle": { - "trip": { - "tripId": "5526961", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.660152435302734, - "longitude": -111.89505004882812, - "bearing": 212.3000030517578, - "speed": 0 - }, - "timestamp": "1763602895", - "vehicle": { - "id": "20007", - "label": "20007" - } - } - }, - { - "id": "10006", - "vehicle": { - "trip": { - "tripId": "5525267", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.70030975341797, - "longitude": -111.87692260742188, - "bearing": 2.0999999046325684, - "speed": 0 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "10006", - "label": "10006" - } - } - }, - { - "id": "17031", - "vehicle": { - "trip": { - "tripId": "5528705", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.69276809692383, - "longitude": -111.9149169921875, - "bearing": 159.3000030517578, - "speed": 0 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "17031", - "label": "17031" - } - } - }, - { - "id": "13044", - "vehicle": { - "trip": { - "tripId": "5524117", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.74976348876953, - "longitude": -111.85415649414062, - "bearing": 90.0999984741211, - "speed": 0 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "13044", - "label": "13044" - } - } - }, - { - "id": "22018", - "vehicle": { - "trip": { - "tripId": "5620476", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.225379943847656, - "longitude": -111.6611328125, - "bearing": 274.70001220703125, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "22018", - "label": "22018" - } - } - }, - { - "id": "13041", - "vehicle": { - "trip": { - "tripId": "5524157", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.75883865356445, - "longitude": -111.94385528564453, - "bearing": 60.5, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "13041", - "label": "13041" - } - } - }, - { - "id": "21095", - "vehicle": { - "trip": { - "tripId": "5617113", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 39.97562026977539, - "longitude": -111.7716064453125, - "bearing": 79.0999984741211, - "speed": 7.510272026062012 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "21095", - "label": "21095" - } - } - }, - { - "id": "18001", - "vehicle": { - "trip": { - "tripId": "5529262", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.69363021850586, - "longitude": -111.96013641357422, - "bearing": 353.29998779296875, - "speed": 2.5123648643493652 - }, - "timestamp": "1763602870", - "vehicle": { - "id": "18001", - "label": "18001" - } - } - }, - { - "id": "17073", - "vehicle": { - "trip": { - "tripId": "5530218", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.08877182006836, - "longitude": -112.00059509277344, - "bearing": 323.29998779296875, - "speed": 4.559807777404785 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "17073", - "label": "17073" - } - } - }, - { - "id": "20009", - "vehicle": { - "trip": { - "tripId": "5528310", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.664451599121094, - "longitude": -111.8885726928711, - "bearing": 274, - "speed": 5.945631980895996 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "20009", - "label": "20009" - } - } - }, - { - "id": "23119", - "vehicle": { - "trip": { - "tripId": "5525429", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.76369857788086, - "longitude": -111.90951538085938, - "bearing": 171.1999969482422, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "23119", - "label": "23119" - } - } - }, - { - "id": "CC119", - "vehicle": { - "trip": { - "tripId": "5525854", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.2142333984375, - "longitude": -111.9834213256836, - "bearing": 210.9600067138672, - "speed": 15.959327697753906 - }, - "timestamp": "1763602894", - "vehicle": { - "id": "CC119", - "label": "CC119" - } - } - }, - { - "id": "1135B", - "vehicle": { - "trip": { - "tripId": "5619752", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.74336624145508, - "longitude": -111.8968276977539, - "bearing": 357.1000061035156, - "speed": 9.521951675415039 - }, - "timestamp": "1763602904", - "vehicle": { - "id": "1135B", - "label": "1135B" - } - } - }, - { - "id": "22109", - "vehicle": { - "trip": { - "tripId": "5529586", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.180965423583984, - "longitude": -111.94720458984375, - "bearing": 305.8999938964844, - "speed": 3.3975040912628174 - }, - "timestamp": "1763602902", - "vehicle": { - "id": "22109", - "label": "22109" - } - } - }, - { - "id": "24006", - "vehicle": { - "trip": { - "tripId": "5524847", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.77144241333008, - "longitude": -111.89820098876953, - "bearing": 85.69999694824219, - "speed": 5.5879998207092285 - }, - "timestamp": "1763602893", - "vehicle": { - "id": "24006", - "label": "24006" - } - } - }, - { - "id": "18003", - "vehicle": { - "trip": { - "tripId": "5528892", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.660762786865234, - "longitude": -111.89485931396484, - "bearing": 207.3000030517578, - "speed": 0 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "18003", - "label": "18003" - } - } - }, - { - "id": "11010", - "vehicle": { - "trip": { - "tripId": "5530466", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.0941276550293, - "longitude": -112.01277160644531, - "bearing": 161.5, - "speed": 3.978656053543091 - }, - "timestamp": "1763602896", - "vehicle": { - "id": "11010", - "label": "11010" - } - } - }, - { - "id": "11009", - "vehicle": { - "trip": { - "tripId": "5530465", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.089107513427734, - "longitude": -111.9823226928711, - "bearing": 91.80000305175781, - "speed": 0.044704001396894455 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "11009", - "label": "11009" - } - } - }, - { - "id": "23011", - "vehicle": { - "trip": { - "tripId": "5528064", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.69643020629883, - "longitude": -112.09069061279297, - "bearing": 90.5, - "speed": 0 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "23011", - "label": "23011" - } - } - }, - { - "id": "11016", - "vehicle": { - "trip": { - "tripId": "5529959", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.16582489013672, - "longitude": -111.9560317993164, - "bearing": 301.1000061035156, - "speed": 0 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "11016", - "label": "11016" - } - } - }, - { - "id": "11029", - "vehicle": { - "trip": { - "tripId": "5535045", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.292240142822266, - "longitude": -112.00992584228516, - "bearing": 155.39999389648438, - "speed": 15.556991577148438 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "11029", - "label": "11029" - } - } - }, - { - "id": "1125B", - "vehicle": { - "trip": { - "tripId": "5619825", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.56477737426758, - "longitude": -112.02474975585938, - "bearing": 178.5, - "speed": 13.947648048400879 - }, - "timestamp": "1763602899", - "vehicle": { - "id": "1125B", - "label": "1125B" - } - } - }, - { - "id": "09033", - "vehicle": { - "trip": { - "tripId": "5617916", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.22518539428711, - "longitude": -111.66053009033203, - "bearing": 8.899999618530273, - "speed": 0 - }, - "timestamp": "1763602904", - "vehicle": { - "id": "09033", - "label": "09033" - } - } - }, - { - "id": "20005", - "vehicle": { - "trip": { - "tripId": "5527363", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.54743194580078, - "longitude": -111.91736602783203, - "bearing": 6.400000095367432, - "speed": 13.90294361114502 - }, - "timestamp": "1763602895", - "vehicle": { - "id": "20005", - "label": "20005" - } - } - }, - { - "id": "17001", - "vehicle": { - "trip": { - "tripId": "5534644", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 41.006587982177734, - "longitude": -111.90632629394531, - "bearing": 320.79998779296875, - "speed": 13.232383728027344 - }, - "timestamp": "1763602898", - "vehicle": { - "id": "17001", - "label": "17001" - } - } - }, - { - "id": "CC104", - "vehicle": { - "trip": { - "tripId": "5525836", - "scheduleRelationship": "SCHEDULED" - }, - "position": { - "latitude": 40.960391998291016, - "longitude": -111.89168548583984, - "bearing": 180.30999755859375, - "speed": 30.827878952026367 - }, - "timestamp": "1763602897", - "vehicle": { - "id": "CC104", - "label": "CC104" - } - } - } - ] -} \ No newline at end of file