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

    Interface FormsSectionForListSections

    A minimal section shape for list-sections API responses.

    interface FormsSectionForListSections {
        createdAt: string;
        description: ProseMirrorDocument;
        descriptionHtml: string;
        formId: string;
        id: string;
        progress: string;
        title: string;
        updatedAt: string;
    }
    Index

    Properties

    createdAt: string

    The creation timestamp of the section.

    description: ProseMirrorDocument

    The section description as ProseMirror JSON, for admin editing in Tiptap.

    descriptionHtml: string

    The section description rendered as HTML for frontend form display and preview.

    formId: string

    The form this section belongs to.

    id: string

    Unique identifier.

    progress: string

    Section progress status (backend field; may be empty string).

    title: string

    Section title (e.g., 'Group Info').

    updatedAt: string

    The last updated timestamp of the section.