Viktorani API - v0.0.8
    Preparing search index...

    Interface GameQuestion

    Tracks the GM's adjudication status for each question in a game. Created when a question is first visited; updated as the GM rules on buzzes.

    interface GameQuestion {
        gameId: string;
        id: string;
        order: number;
        questionId: string;
        roundId: string;
        status: "pending" | "correct" | "incorrect" | "skipped";
    }
    Index

    Properties

    gameId: string
    id: string
    order: number

    Position within the round (zero-based).

    questionId: string
    roundId: string
    status: "pending" | "correct" | "incorrect" | "skipped"