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

    Interface GBFSSystemRegionsV30

    GBFS System Regions Schema V3.0

    Describes regions for a system that is broken up by geographic or political region.

    interface GBFSSystemRegionsV30 {
        data: {
            regions: {
                name: { language: string; text: string }[];
                region_id: string;
            }[];
        };
        last_updated: string;
        ttl: number;
        version: "3.0";
    }
    Index

    Properties

    data: {
        regions: {
            name: { language: string; text: string }[];
            region_id: string;
        }[];
    }

    Data describing regions for a system.

    Type declaration

    • regions: { name: { language: string; text: string }[]; region_id: string }[]

      Array of regions.

    last_updated: string

    Last time the data in the feed was updated in RFC3339 format.

    ttl: number

    Number of seconds before the data in the feed will be updated again (0 if the data should always be refreshed).

    version: "3.0"

    GBFS version number to which the feed conforms.