Member Junction
    Preparing search index...

    Represents a resolved form response field ready for display.

    interface FormResponseField {
        displayValue: string;
        key: string;
        label: string;
        type: string | null;
        value: unknown;
    }
    Index

    Properties

    displayValue: string

    Display-friendly formatted value

    key: string

    Question ID or key name

    label: string

    Human-readable label

    type: string | null

    Field type from the schema (for type-aware formatting)

    value: unknown

    Raw value from the response