@nycu-sdc/core-system-sdk
    Preparing search index...

    Interface FormsDateOption

    Options for date questions.

    interface FormsDateOption {
        hasDay: boolean;
        hasMonth: boolean;
        hasYear: boolean;
        maxDate?: string;
        minDate?: string;
    }
    Index

    Properties

    hasDay: boolean

    Whether the day component is required for the date.

    hasMonth: boolean

    Whether the month component is required for the date.

    hasYear: boolean

    Whether the year component is required for the date.

    maxDate?: string

    Maximum date range in utcDateTime (e.g., 2025-05-31T23:59:59Z for 2025/5/31 23:59:59 UTC). If specified, use the last day of the month/year for the maximum value.

    minDate?: string

    Minimum date range in utcDateTime (e.g., 2025-01-01T00:00:00Z for 2025/1/1 00:00:00 UTC). If specified, use the first day of the month/year for the minimum value.