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

    Interface RegistryEntry

    An OParl endpoint as endpoints() lists it: an entry of the public registry at dev.oparl.org, or of the curated list shipped with this package.

    interface RegistryEntry {
        bodyCount: number | null;
        checked: string | null;
        fetched: string | null;
        note: string | null;
        oparlVersion: string | null;
        problem: string | null;
        replacedBy: string | null;
        source: "registry" | "curated";
        systemName: string | null;
        title: string;
        url: string;
        vendor: string | null;
        wikidata: string | null;
        working: boolean;
    }
    Index
    bodyCount: number | null
    checked: string | null

    The day of the last live check by this package's maintainers (YYYY-MM-DD), or null.

    fetched: string | null

    When the registry last fetched the endpoint (ISO 8601); null for curated entries.

    note: string | null

    A short note, e.g. that the server is an archive or needs a certificate workaround.

    oparlVersion: string | null

    "1.0", "1.1", … taken from the System's oparlVersion; null when unknown.

    problem: string | null

    Why that check failed (e.g. "HTTP 404"), or null.

    replacedBy: string | null

    The System URL that replaces this one, when the server moved.

    source: "registry" | "curated"

    Where the entry comes from: the dev.oparl.org registry or the curated list.

    systemName: string | null

    The System's name (usually the product), when known.

    title: string
    url: string

    The endpoint's System URL.

    vendor: string | null
    wikidata: string | null
    working: boolean

    Whether the endpoint answered with a System and its bodies: from the most recent live check (checked) when there is one, else from the registry's last fetch.