gtfs-sqljs
    Preparing search index...

    Interface CacheMetadata

    Metadata stored with cached GTFS databases

    interface CacheMetadata {
        checksum: string;
        size: number;
        skipFiles?: string[];
        source?: string;
        timestamp: number;
        version: string;
    }
    Index

    Properties

    checksum: string

    Checksum of the source zip file (SHA-256)

    size: number

    Size of the cached database in bytes

    skipFiles?: string[]

    Which files were skipped during import (affects cache validity)

    source?: string

    Source zip URL or path (for reference)

    timestamp: number

    Timestamp when the cache was created

    version: string

    Version number - cache is invalidated if this changes