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

    Interface Portal

    A known CKAN portal, from the built-in list (ckan portals).

    interface Portal {
        checked: string | null;
        ckanVersion: string | null;
        datasets: number | null;
        id: string;
        note: string | null;
        problem: string | null;
        sources: PortalSource[];
        title: string;
        url: string;
        working: boolean;
    }
    Index
    checked: string | null

    Date of the last check (YYYY-MM-DD), or null if never checked.

    ckanVersion: string | null

    From status_show; null when a portal does not expose it (Berlin).

    datasets: number | null

    Number of datasets package_search reported at the last check.

    id: string

    Short name for --portal, e.g. hamburg.

    note: string | null
    problem: string | null

    Why the last check failed, or null.

    sources: PortalSource[]
    title: string
    url: string

    Site root; the Action API is at <url>/api/3/action.

    working: boolean

    Whether the last check could search the portal.