gis-tools-ts - v0.6.0
    Preparing search index...

    Interface GBFSSystemHoursV11

    GBFS System Hours Schema V1.1 Interface

    interface GBFSSystemHoursV11 {
        data: {
            rental_hours: {
                days: ("sun" | "mon" | "tue" | "wed" | "thu" | "fri" | "sat")[];
                end_time: string;
                start_time: string;
                user_types: ("member" | "nonmember")[];
            }[];
        };
        last_updated: number;
        ttl: number;
        version: "1.1";
    }
    Index

    Properties

    data: {
        rental_hours: {
            days: ("sun" | "mon" | "tue" | "wed" | "thu" | "fri" | "sat")[];
            end_time: string;
            start_time: string;
            user_types: ("member" | "nonmember")[];
        }[];
    }

    Data containing system hours of operations.

    last_updated: number

    Last time the data in the feed was updated in POSIX time.

    ttl: number

    Number of seconds before the data in the feed will be updated again.

    version: "1.1"

    GBFS version number (1.1).