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

    Interface FilterRequest

    The request body shared by every MUDAB endpoint. All fields are optional; an empty body returns the whole table (for measurements ~187,000 rows / ~42 MB on 2026-09-15 — send a range unless you mean it).

    IMPORTANT — verified against the live API: only range is honoured. Despite the OpenAPI spec advertising every endpoint as a "filterbare Liste", the live server ignores filter and orderby (a filter that should match nothing still returns the full page). They are kept here to mirror the documented schema, but do not rely on them — filter and sort client-side. NB: a range MUST include from (a count-only range is answered with an HTTP 500).

    interface FilterRequest {
        filter?: Filter;
        orderby?: OrderBy;
        range?: Range;
    }
    Index
    filter?: Filter
    orderby?: OrderBy
    range?: Range