gtfs-sqljs
    Preparing search index...

    Interface TripSchedule

    interface TripSchedule {
        canceled: boolean;
        has_realtime: boolean;
        rt_last_updated?: number;
        schedule_relationship?: TripScheduleRelationship;
        service_date: string;
        stops: TripScheduleStop[];
        timezone: string;
        trip: Trip;
        trip_delay?: number;
    }
    Index

    Properties

    canceled: boolean

    Trip is canceled in the realtime feed.

    has_realtime: boolean

    Whether any realtime information applies to this trip.

    rt_last_updated?: number

    Most recent realtime load time (unix seconds) among this trip's updates.

    schedule_relationship?: TripScheduleRelationship

    Trip-level schedule relationship from the realtime feed.

    service_date: string

    The service date the schedule was resolved for (YYYYMMDD).

    Resolved stop times ordered by stop_sequence.

    timezone: string

    IANA timezone used for epoch computation.

    trip: Trip
    trip_delay?: number

    Trip-level delay in seconds (TripUpdate.delay), when the feed provides one.