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

    Interface GBFSStationInformationV10

    GBFS Station Information Schema V1.0 Interface

    interface GBFSStationInformationV10 {
        data: {
            stations: {
                address?: string;
                capacity?: number;
                cross_street?: string;
                lat: number;
                lon: number;
                name: string;
                post_code?: string;
                region_id?: string;
                rental_methods?: (
                    | "KEY"
                    | "CREDITCARD"
                    | "PAYPASS"
                    | "APPLEPAY"
                    | "ANDROIDPAY"
                    | "TRANSITCARD"
                    | "ACCOUNTNUMBER"
                    | "PHONE"
                )[];
                short_name?: string;
                station_id: string;
            }[];
        };
        last_updated: number;
        ttl: number;
    }
    Index

    Properties

    Properties

    data: {
        stations: {
            address?: string;
            capacity?: number;
            cross_street?: string;
            lat: number;
            lon: number;
            name: string;
            post_code?: string;
            region_id?: string;
            rental_methods?: (
                | "KEY"
                | "CREDITCARD"
                | "PAYPASS"
                | "APPLEPAY"
                | "ANDROIDPAY"
                | "TRANSITCARD"
                | "ACCOUNTNUMBER"
                | "PHONE"
            )[];
            short_name?: string;
            station_id: string;
        }[];
    }

    Data containing an array of stations.

    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.