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

    Interface GBFSSystemAlertsV10

    GBFS System Alerts Schema V1.0 Interface

    interface GBFSSystemAlertsV10 {
        data: {
            alerts: {
                alert_id: string;
                description?: string;
                last_updated?: number;
                region_ids?: string[];
                station_ids?: string[];
                summary: string;
                times?: { end?: number; start: number }[];
                type: "SYSTEM_CLOSURE" | "STATION_CLOSURE" | "STATION_MOVE" | "OTHER";
                url?: string;
            }[];
        };
        last_updated: number;
        ttl: number;
    }
    Index

    Properties

    Properties

    data: {
        alerts: {
            alert_id: string;
            description?: string;
            last_updated?: number;
            region_ids?: string[];
            station_ids?: string[];
            summary: string;
            times?: { end?: number; start: number }[];
            type: "SYSTEM_CLOSURE" | "STATION_CLOSURE" | "STATION_MOVE" | "OTHER";
            url?: string;
        }[];
    }

    Data containing ad-hoc alerts for the system.

    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.