@transreport/pauk-rrms-api
    Preparing search index...

    Interface ChecklistItem

    An RRMS checklist question and its current answer

    interface ChecklistItem {
        option_type: ChecklistItemOptionType;
        options: ChecklistItemOptionsItem[] | null;
        question_id: string;
        selected_option: string | null;
        text: string;
    }
    Index

    Question input type

    options: ChecklistItemOptionsItem[] | null

    Selectable options for the question

    question_id: string

    Checklist question ID

    selected_option: string | null

    Current answer value

    text: string

    Question text