Interface AutoTestGenerationDraftRubricRow

A single proposed rubric row. Its draftId is the synthetic id the configuration's connect-rubric steps reference before any real rubric exists, remapped to a real rubric row id when the draft is accepted. A row scores either by discrete levels or on a continuous scale.

interface AutoTestGenerationDraftRubricRow {
    description: string;
    draftId: number;
    header: string;
    scoring: AutoTestGenerationDraftRubricRowScoring;
}

Properties

description: string

The row description.

draftId: number

The synthetic draft id connect-rubric steps reference.

header: string

The row header.

How the row awards points: discrete levels or a continuous scale.