@omnist-dev/omnist
    Preparing search index...

    Interface Field

    One named, cardinality-bound field slot of a record: label of type, occurring [min, max] times (max === null is unbounded).

    interface Field {
        label: string;
        max: number | null;
        min: number;
        type: FieldType;
    }
    Index
    label: string

    The field label.

    max: number | null

    Maximum occurrence count allowed (null indicates unbounded cardinality).

    min: number

    Minimum occurrence count required.

    type: FieldType

    The field's type.