Hiyve Components - v1.0.0
    Preparing search index...

    Structure of a saved Q&A session file.

    This matches the format used by the reference application for compatibility. Files are saved as JSON to S3 via the client's file upload API.

    interface QASessionFile {
        exportTime: number;
        questions: { active: Question[]; answered: Question[] };
        savedAt: string;
        savedBy: string;
        sessionId: string;
        sessionName: string;
        totalQuestions: number;
    }
    Index

    Properties

    exportTime: number

    Timestamp when the session was exported

    questions: { active: Question[]; answered: Question[] }

    Questions organized by status

    Type Declaration

    • active: Question[]

      Questions that have not been answered

    • answered: Question[]

      Questions that have been answered

    savedAt: string

    ISO timestamp when last saved

    savedBy: string

    User ID of who saved the session

    sessionId: string

    Unique session identifier

    sessionName: string

    Human-readable session name

    totalQuestions: number

    Total number of questions in the session