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

    Interface GBFSManifestV30

    GBFS Manifest Schema V3.0

    An index of gbfs.json URLs for each GBFS data set produced by a publisher. A single instance of this file should be published at a single stable URL, for example: https://example.com/gbfs/manifest.json.

    interface GBFSManifestV30 {
        data: {
            datasets: {
                system_id: string;
                versions: {
                    url: string;
                    version: "1.1" | "1.0" | "2.0" | "2.1" | "2.2" | "2.3" | "3.0";
                }[];
            }[];
        };
        last_updated: string;
        ttl: number;
        version: "3.0";
    }
    Index

    Properties

    data: {
        datasets: {
            system_id: string;
            versions: {
                url: string;
                version: "1.1" | "1.0" | "2.0" | "2.1" | "2.2" | "2.3" | "3.0";
            }[];
        }[];
    }

    Data object containing the list of datasets.

    Type declaration

    • datasets: {
          system_id: string;
          versions: {
              url: string;
              version: "1.1" | "1.0" | "2.0" | "2.1" | "2.2" | "2.3" | "3.0";
          }[];
      }[]

      Array of datasets containing system IDs and versions.

    last_updated: string

    Last time the data in the feed was updated in RFC3339 format. Format: date-time

    ttl: number

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

    version: "3.0"

    GBFS version number to which the feed conforms, according to the versioning framework. Const: '3.0'