@maschinenlesbar.org/autobahn-cli
    Preparing search index...

    Interface AutobahnServiceItem

    The shared item shape across the service listings. Every field is optional because the API populates a different subset per service type (a webcam has an imageurl, a charging station has connector metadata, and so on). The identifier is the opaque id you pass to the corresponding get endpoint; its format varies by service.

    interface AutobahnServiceItem {
        coordinate?: Coordinate;
        description?: string[];
        display_type?: string;
        extent?: string | null;
        footer?: string[];
        future?: boolean;
        geometry?: JsonObject | null;
        icon?: string;
        identifier?: string;
        imageurl?: string;
        isBlocked?: string;
        linkurl?: string;
        operator?: string;
        point?: string | null;
        routeRecommendation?: string[];
        startTimestamp?: string;
        subtitle?: string;
        title?: string;
    }
    Index
    coordinate?: Coordinate
    description?: string[]
    display_type?: string
    extent?: string | null
    footer?: string[]
    future?: boolean
    geometry?: JsonObject | null

    GeoJSON geometry of the affected stretch (roadworks, warnings, closures).

    icon?: string
    identifier?: string
    imageurl?: string
    isBlocked?: string
    linkurl?: string
    operator?: string
    point?: string | null

    Position as a string pair. The order varies by service: "lat,long" for roadworks, warnings and closures, "long,lat" for charging stations; null for lorry parking.

    routeRecommendation?: string[]
    startTimestamp?: string
    subtitle?: string
    title?: string