ping-identity
    Preparing search index...

    Type Alias BaseCollector

    Common fields present on every field-level collector.

    type BaseCollector = {
        key: string;
        label: string;
        raw?: Record<string, unknown>;
        required: boolean;
        type: string;
    }
    Index

    Properties

    key: string

    Unique collector key identifying this field in the form.

    label: string

    Human-readable field label.

    raw?: Record<string, unknown>

    Raw server-side field JSON from node.input.form.components.fields[].

    Populated by the native mapper. undefined for collectors with no matching field entry in the server payload (e.g. certain action buttons).

    required: boolean

    Whether this field must have a value before submitting.

    type: string

    Server-side collector type string.