Norway Open Data SDK
    Preparing search index...

    Type Alias JourneyLeg

    A normalized journey leg with scheduled and expected times.

    type JourneyLeg = {
        cancelled?: boolean;
        destination?: JourneyPlace;
        distance?: number;
        expectedEndTime?: string;
        expectedStartTime?: string;
        line?: {
            id?: string;
            name?: string;
            publicCode?: string;
            transportMode?: string;
        };
        mode?: string;
        origin?: JourneyPlace;
        realtime?: boolean;
        scheduledEndTime?: string;
        scheduledStartTime?: string;
    }
    Index
    cancelled?: boolean
    destination?: JourneyPlace
    distance?: number
    expectedEndTime?: string
    expectedStartTime?: string
    line?: {
        id?: string;
        name?: string;
        publicCode?: string;
        transportMode?: string;
    }
    mode?: string
    origin?: JourneyPlace
    realtime?: boolean
    scheduledEndTime?: string
    scheduledStartTime?: string