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

    Interface GBFSManifestV31RC

    GBFS Manifest Schema V3.1-RC

    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 GBFSManifestV31RC {
        data: {
            datasets: {
                area?: MultiPolygonGeometry;
                country_code?: string;
                system_id: string;
                versions: {
                    url: string;
                    version:
                        | "1.1"
                        | "1.0"
                        | "2.0"
                        | "2.1"
                        | "2.2"
                        | "2.3"
                        | "3.0"
                        | "3.1-RC";
                }[];
            }[];
        };
        last_updated: string;
        ttl: number;
        version: "3.1-RC";
    }
    Index

    Properties

    data: {
        datasets: {
            area?: MultiPolygonGeometry;
            country_code?: string;
            system_id: string;
            versions: {
                url: string;
                version: "1.1" | "1.0" | "2.0" | "2.1" | "2.2" | "2.3" | "3.0" | "3.1-RC";
            }[];
        }[];
    }

    Contains the dataset information for the publisher.

    Type declaration

    • datasets: {
          area?: MultiPolygonGeometry;
          country_code?: string;
          system_id: string;
          versions: {
              url: string;
              version: "1.1" | "1.0" | "2.0" | "2.1" | "2.2" | "2.3" | "3.0" | "3.1-RC";
          }[];
      }[]

      An array of objects, each containing dataset information.

    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.1-RC"

    GBFS version number to which the feed conforms, according to the versioning framework (added in v1.1). Const: 3.1-RC